Hi all! With this plugin https://github.com/amiorin/vim-project
My workflow ----------- 1. Open a file. 2. Change the current working directory to the root of the project containing the file. 3. Change the guitablabel to something like "number title_of_the_project" 4a. Open an other file in a new tab or in a split and go to step 2. 4b. Change tab, window or buffer and go to step 2. This plugin takes care of steps 2 and 3. The number inside the guitablabel is for this shortcut. https://gist.github.com/amiorin/5433515 Integration with CtrlP ---------------------- I use CtrlPMRUFiles with this configuration. let g:ctrlp_mruf_relative = 1 nnoremap <silent> so :exec g:ctrlp_mruf_relative == 0 ? "let g:ctrlp_mruf_relative = 1 \| CtrlPMRUFiles" : "let g:ctrlp_mruf_relative = 0 \| CtrlPMRUFiles"<CR> Integration with NerdTREE ------------------------- To open the project folder. nnoremap <silent> ss :NERDTreeToggle<CR> nnoremap <silent> s. :NERDTree .<CR> Self-Promotion -------------- Please star the project if you like it. https://github.com/amiorin/vim-project Please vote it on Hacker News https://news.ycombinator.com/item?id=5588257 Best regards Alberto -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
