mattboehm / vim-unstack

Vim plugin for parsing stack traces and opening the files
286 stars 15 forks source link

Fix a bug with setting key mappings #38

Closed maljub01 closed 3 years ago

maljub01 commented 3 years ago

Currently, key mappings are never set because the regex '\s*' matches all strings (including the empty string).

This change implements the actual intent behind #32, which introduced this bug.

mattboehm commented 3 years ago

Thanks again!