Nate Fischer

Results 81 issues of Nate Fischer

It'd be nice if we could add a `docs/` folder with documentation that's accessible from within vim via `:h`. @moll have you thought about adding this? I know there a...

Hi! Just found your project, and I think it's pretty neat! We recently added a few new commands over at ShellJS. In particular, you might want to write a wrapper...

This removes `node-glob` in favor of `fast-glob`. The main motivation for this is because `node-glob` has a security warning and I can't update to `node-glob@9` unless we drop compatibility for...

fix
refactor
typescript

This removes support for configuring `config.globOptions`. Exposing this variable makes it difficult to change (or upgrade) our glob library. It's best to consider our choice of glob library to be...

breaking

I noticed that when I load a markdown file in vim, the `vim-json` file automatically runs `set conceallevel=2`. There's a few configs which are necessary to reproduce this: 1. vimrc...

No change to logic. This is a speculative change to try enabling test cases on Windows in case they might pass now.

test
windows

This swaps out shell.exec() in favor of shell.cmd(). This should offer more reliable performance and consistent behavior. There's a known issue that this causes one test case to fail due...

enhancement

This looks like another regression in v0.9.0. It seems like glob expansion only expands in the last path segment, not in any earlier path segments. For example: ``` common.expand(['test/r?sources/file1.txt']) ```...

fix
medium priority

This exposes two new configuration variables for the tmux plugin: * @vim_navigator_pattern: the regular expression which we use to detect if the current program is vim/neovim/etc. or not. * @vim_navigator_check:...

enhancement

It seems as though some Windows systems don't allow the first part of the command to be wrapped in quotes. We couldn't detect this issue on CI, but this was...

bug