dmenu.vim

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dmenu.vim
Log | Files | Refs

commit 5c2a32cb5482cd41ecdcf532b6b9c093238a0657
parent 398763cd74832f4ee65df806f8ee3c0997c846d3
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Mon,  3 Oct 2016 19:43:10 -0700

Update README with :DmenuTag and single quotes

Diffstat:
README.md | 16+++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -12,19 +12,29 @@ command. :DmenuBuf "e" +Run the following command to jump to a function or variable using ctags. +Currently it creates a tags file every time you run it, but hopefully this is +only temporary and it will simply create tags when needed in memory. + + :DmenuTag + ## Configuration To change the default dmenu command put the following in your `.vimrc` - let g:dmenu_cmd = "dmenu -i -l 20" + let g:dmenu_cmd = 'dmenu -i -l 20' To change the default file list command put the following in your `.vimrc` - let g:dmenu_ls = "find -type f -printf '%P\n' | tail -n +2" + let g:dmenu_ls = 'find -type f -printf "%P\n" | tail -n +2' To change the default git file list command put the following in your `.vimrc` - let g:dmenu_git_ls= "git ls-files" + let g:dmenu_git_ls = 'git ls-files' + +To change the default ctags command put the following in your `.vimrc` + + let g:dmenu_ctags = 'ctags -f - --sort=no -R . | cut -f 1' ## Installation