vim-relatively-complete

Vim plugin to complete files relative to the current file, unless path explicitly specified.
git clone git://git.alex.balgavy.eu/vim-relatively-complete.git
Log | Files | Refs | README | LICENSE

README.md (1619B)


      1 # vim-relatively-complete: insert file completion, relative to the current file
      2 ## Why?
      3 By default, Vim's filename insert completion (`i_CTRL-X_CTRL-F`) completes files relative to the current working directory.
      4 I've found that I generally instead want to complete files relative to the file in the current buffer.
      5 That's why this plugin exists.
      6 
      7 ## What?
      8 This plugin modifies Vim's insert filename completion feature to complete files relative to the file in the current buffer.
      9 When file completion is triggered, it temporarily changes the current working directory of the current buffer to the directory containing the file loaded in the buffer.
     10 On the `CompleteDone` event, the current working directory for the buffer is reset to its original value.
     11 If the cursor is positioned at the end of a (partial) absolute path, files are completed based on that path.
     12 That is, if the cursor is positioned after e.g. `/etc/` in the current buffer, the plugin will complete files/directories in `/etc/` (just like standard insert completion).
     13 
     14 The plugin exposes one insert mode mapping:
     15 
     16 * `<Plug>RelativelyCompleteFile`: start completing filenames relative to the file in the current buffer
     17 
     18 There are no default mappings (by design, so as not to force mappings on users), so you need to map this `<Plug>` yourself.
     19 For example, by putting this line in your .vimrc: `imap <C-x><C-f> <Plug>RelativelyCompleteFile`.
     20 
     21 **Disclaimer:** this code is not extensively tested.
     22 It works for me, running Vim 8.2 in the terminal on macOS, but it's not guaranteed to work for others.
     23 It might not work in Neovim, as I don't use Neovim.