All Projects → milkypostman → Vim Togglelist

milkypostman / Vim Togglelist

Functions to toggle the [Location List] and the [Quickfix List] windows.

Labels

Projects that are alternatives of or similar to Vim Togglelist

Vim Search Pulse
Easily locate the cursor after a search
Stars: ✭ 91 (-9%)
Mutual labels:  viml
Cmd2.vim
cmdline-mode enhancement for Vim
Stars: ✭ 94 (-6%)
Mutual labels:  viml
Textobjectify
TextObjectify is a Vim plugin which improves text-objects
Stars: ✭ 98 (-2%)
Mutual labels:  viml
Dotfiles
My dotfiles
Stars: ✭ 91 (-9%)
Mutual labels:  viml
Vim Jst
A vim plugin for highlighting and indenting JST/EJS syntax
Stars: ✭ 92 (-8%)
Mutual labels:  viml
Devbox
Solomon's dev environment
Stars: ✭ 95 (-5%)
Mutual labels:  viml
Vim Go Extra
Extra plugin for golang
Stars: ✭ 90 (-10%)
Mutual labels:  viml
Vim Follow My Lead
Vim plugin for showing all your <Leader> mappings in a readable table including the descriptions.
Stars: ✭ 100 (+0%)
Mutual labels:  viml
Vim config
My vim configuration; packaged to be other-user-friendly
Stars: ✭ 92 (-8%)
Mutual labels:  viml
Vim Ruby Minitest
Vim highlighting & completion for MiniTest
Stars: ✭ 97 (-3%)
Mutual labels:  viml
Vim Json
Syntax highlighting for JSON in Vim
Stars: ✭ 91 (-9%)
Mutual labels:  viml
Yavide
Modern C/C++ integrated development environment
Stars: ✭ 1,306 (+1206%)
Mutual labels:  viml
Vim Howdoi
A Vim frontend for howdoi, the awesome command line tool that lets you ask what you need and grabs the snippet of code from SO.
Stars: ✭ 96 (-4%)
Mutual labels:  viml
Unite Tag
tags soruce for unite.vim
Stars: ✭ 91 (-9%)
Mutual labels:  viml
Elixir.nvim
Vim Completion/Doc/Eval for Elixir (nvim), compile https://github.com/awetzel/neovim-elixir and https://github.com/awetzel/nvim-rplugin
Stars: ✭ 99 (-1%)
Mutual labels:  viml
Mango.vim
A color scheme for vim
Stars: ✭ 90 (-10%)
Mutual labels:  viml
Vip
DEPRECATED - Switch to https://github.com/tobyS/pdv and https://github.com/tobyS/vip instead!
Stars: ✭ 94 (-6%)
Mutual labels:  viml
Vim Arduino Syntax
Arduino syntax files for Vim
Stars: ✭ 100 (+0%)
Mutual labels:  viml
Vimperator Colors
colorsheme
Stars: ✭ 99 (-1%)
Mutual labels:  viml
Preto
A minimal dark theme for VIM.
Stars: ✭ 97 (-3%)
Mutual labels:  viml

togglelist.vim

A simple plugin for vim that allows you to bind a key to toggle the Location List and the Quickfix List. This plugin is currently in early development and there aren't many things besides a few options I imagine adding. Feel free to submit patches.

Installation

Basic Brute-Force Install

Copy togglelist.vim to your ~/.vim/plugin directory.

Pathogen

Checkout the github repository to the Pathogen directory.

cd ~/.vim/bundle
git clone https://github.com/milkypostman/vim-togglelist.git

Mappings

The default mappings are:

nmap <script> <silent> <leader>l :call ToggleLocationList()<CR>
nmap <script> <silent> <leader>q :call ToggleQuickfixList()<CR>

You can prevent these mappings by setting g:toggle_list_no_mappings in your .vimrc and then remap them if you want--both ToggleLocationList and ToggleQuickfixList are global functions. I imagine the names of the functions are self-explanatory.

After opening or closing either list, the previous window is restored so you can still use <C-w>p.

Customization

You can specify which command you want to use to open a quickfix list(in case you are using some plugin) like:

let g:toggle_list_copen_command="Copen"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].