Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sorting list #57

Merged
merged 1 commit into from
Oct 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Sorting list
  • Loading branch information
adelarsq authored Oct 2, 2019
commit 486faf8f08086dc37a89d9e21c1bbdb2852c13ea
24 changes: 12 additions & 12 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@ Some basic list sources for [coc.nvim](https://github.com/neoclide/coc.nvim/)

Including:

- [x] `buffers` current buffer list.
- [x] `cmdhistory` history of commands.
- [x] `colors` colors schemes.
- [x] `files` search files from current cwd.
- [x] `mru` most recent used files.
- [x] `filetypes` file types.
- [x] `grep` grep text from current cwd.
- [x] `words` search word in current buffer.
- [x] `helptags` helptags of vim.
- [x] `lines` search lines by regex patterns.
- [x] `locationlist` items from vim's location list.
- [x] `quickfix` items from vim's quickfix list.
- [x] `buffers` current buffer list.
- [x] `helptags` helptags of vim.
- [x] `tags` search tag files.
- [x] `filetypes` file types.
- [x] `colors` colors schemes.
- [x] `marks` marks of vim.
- [x] `windows` windows of vim.
- [x] `vimcommands` available vim commands.
- [x] `maps` key mappings.
- [x] `cmdhistory` history of commands.
- [x] `marks` marks of vim.
- [x] `mru` most recent used files.
- [x] `quickfix` items from vim's quickfix list.
- [x] `searchhistory` history of search.
- [x] `sessions` session list.
- [x] `tags` search tag files.
- [x] `vimcommands` available vim commands.
- [x] `windows` windows of vim.
- [x] `words` search word in current buffer.

For snippets list, use [coc-snippets](https://github.com/neoclide/coc-snippets).

Expand Down