This Vim configuration is meant to make Vim feel more like an IDE than a simple console-based text editor.
Run these commands to get this Vim configuration working on your OS X or Linux machine:
cd ~
git clone https://github.com/brysalazar12/phpvim.git .vim
ln -s ~/.vim/vimrc ~/.vimrc
- Code folding
- Edit many files at the same time
- File Browser on left side of screen
- Functions, Variables, Classes on right
- Move between files in center screen
- PHP Documenting
- String search in folder
- Use in normal mode z o to expand current line
- Use in normal mode z c to fold the code
- Use in normal mode z i to toggle expand all or fold all
- Use in normal mode F2 on current method, class or property to add php documentation
- Use in normal mode point your cursor on the word you want to search then press F3 this will search in all .php file
- Use in visual mode highlight the string you want to search then press F3 this will search in all .php file
- Use ,q to close the current file (a different file will appear in its place)
- Use Ctrl h Ctrl l to move between open files
- Ctrl Left Ctrl Right also works for switching between files
- While in MacVIM, you can swipe left and right to switch between open files
- Use Cmd Shift N (or Alt n in Linux GVim) to open a new empty buffer
- Use ,h ,j ,k ,l to navigate between viewports
- Use ,Q to close the current window (you probably won't ever need to do this)
- Use ,n to toggle the file browser
- Use ,y to toggle the tag browser
- Use Ctrl+P to perform a recursive fuzzy filename search
- Use ,a and type a phrase to search to search based on content within your files (quote and escape if needed)
- Use ,A to close the open ack search results at the bottom of the screen
- Use ,n to toggle the file browser
- Use standard movement keys to move around
- Use Ctrl j and Ctrl k to move between siblings (aka skip over children in expanded folders)
- Use C to make the highlighted node the current working directory
- Use :Bookmark BookmarkName to bookmark the current selection
- Use B to toggle the bookmark menu
- Use ? if you'd like some NERDTree documentation
- Use o to open the selected file in a new buffer
- Use t to open the selected file in a new tab
- Use Cmd t (or Alt t in Linux GVim) to open a new tab
- Use Cmd w (or Alt w in Linux GVim) to close the current tab
- Use Cmd 1 to Cmd 9 (or Alt 1 to Alt 9 in Linux GVim) to navigate to the specified tab
- Use y to toggle the tag browser viewport
- Use s to reorder the items by alpha or occurance
There is a very large collection of colorschemes in this repository.
Many of them can be seen here.
Set the scheme using :colorscheme NAME
.
- Install ctags and configure on your Mac.
- NB: Tag List is currently not functioning
- Use ,c to copy the highlighted text into the OS clipboard
- Use ,v to paste the OS clipboard into the document