diff options
author | Teddy Wing | 2015-04-02 15:28:25 -0400 |
---|---|---|
committer | Teddy Wing | 2015-04-02 15:28:25 -0400 |
commit | 48c00d0a278a24660b2b73519bc389492de85d9c (patch) | |
tree | b97496be0055974aea44bb99ae389df3d45291b3 /bundle/write-with-spaces/plugin | |
parent | 58f3b377161e92faa8aade9ff6b39cb66286eb33 (diff) | |
download | dotvim-48c00d0a278a24660b2b73519bc389492de85d9c.tar.bz2 |
write-with-spaces: Enable tab completion
Turn on tab completion to make it easier to navigate to a directory to
save the file in.
Diffstat (limited to 'bundle/write-with-spaces/plugin')
-rw-r--r-- | bundle/write-with-spaces/plugin/write_with_spaces.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle/write-with-spaces/plugin/write_with_spaces.vim b/bundle/write-with-spaces/plugin/write_with_spaces.vim index 53db90f..1ccd837 100644 --- a/bundle/write-with-spaces/plugin/write_with_spaces.vim +++ b/bundle/write-with-spaces/plugin/write_with_spaces.vim @@ -5,4 +5,4 @@ " " Provides a way to save files with spaces in their name -command! -bang -nargs=* Write :call write_with_spaces#Write(<q-bang>, <q-args>) +command! -bang -nargs=* -complete=file Write :call write_with_spaces#Write(<q-bang>, <q-args>) |