| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-02-27 | chore: remove useless code and indent files | kiyan | |
| 2021-02-21 | Add "v", "V", "<C-v>" as valid options of `selection_mode`. | echasnovski | |
| 2021-02-21 | Add `selection_mode` argument to `ts_utils.update_selection()`. | echasnovski | |
| 2021-01-08 | removed async changedtick | Brian Shu | |
| 2021-01-08 | async buf_attach | Brian Shu | |
| 2021-01-07 | removed async changedtick | Brian Shu | |
| 2021-01-07 | async buf_attach | Brian Shu | |
| 2020-11-23 | fix: update interface following languagetree merge (#687) | Thomas Vigouroux | |
| 2020-10-19 | Treesitter indent | kiyan42 | |
| also fixes the memoize_by_buf_tick function | |||
| 2020-08-31 | feat(refactor.navigation): add navigation.goto_{next,previous}_usage | Stephan Seitz | |
| 2020-08-17 | Textobjects: set jump before going to adjacent_textobject | Stephan Seitz | |
| 2020-08-17 | Textobjects: add swap feature | Stephan Seitz | |
| 2020-08-13 | fix(definitions): optimize and fix definition highlighting | Steven Sojka | |
| 2020-07-27 | configs: attach on unknown parsers too | Thomas Vigouroux | |
| 2020-07-20 | Fix #206: Use lsp.util.apply_text_edits for smart_rename | Stephan Seitz | |
| 2020-07-20 | Fixed to use normal! instead of normal | Steve Vermeulen | |
| 2020-07-16 | Refactor locals.lua: | Stephan Seitz | |
| - shared query group stuff -> query.lua - local-specific stuff from ts_utils -> locals.lua | |||
| 2020-07-16 | fix(ts_utils): be sure to parse to get root | Thomas Vigouroux | |
| Be sure to call `parser:parser()` to get a tree instead of getting the tree directly. This will not cost anything is the buffer is freshly parsed. Fixes #181 | |||
| 2020-07-15 | feat(textobjects): Add `start` to include preceding things like documentation | Stephan Seitz | |
| 2020-07-14 | Add textobjects module | Stephan Seitz | |
| 2020-07-13 | Add ts_utils.highlight_node | Stephan Seitz | |
| 2020-07-08 | fix(refactor): highlight def perf issue fix | Steven Sojka | |
| 2020-07-05 | Make luacheck happy | Stephan Seitz | |
| 2020-06-30 | refactor(refactor): use higher local apis and some cleanup | Steven Sojka | |
| 2020-06-30 | feat(refactor): add definition navigation module | Steven Sojka | |
| 2020-06-30 | feat(refactor): add smart rename module | Steven Sojka | |
| 2020-06-30 | feat(refactor): highlight usages module | Steven Sojka | |
| 2020-06-19 | add winnr to get_node_at_cursor | kiyan42 | |
| 2020-06-19 | refacto: remove buf_state | kiyan42 | |
| - remove buf_state and related code - add get_node_at_cursor() - better incremental selection (code is localized) | |||
| 2020-05-12 | refacto/feat: better handling of parser updates | kiyan42 | |
| features: - node_movement is moving between scopes. - add selection initialization from normal mode - add a decremental selection improvements: - attach to buffer to run tree parsing on change - run state update on CursorMoved - the buffer state is: ``` { cursor_pos = { row=row, col=col }, current_node = node_under_cursor, selection = { range = nil, -- activates when starting a selection nodes = {} -- filling up when starting an incremental selection }, parser = parser, -- parser for current buffer } ``` - refacto all the modules reliant on parsing the tree, update the current nodes, get the current nodes... fixes: - fix has_parser to look for .so libraries - fix should select the whole file when selection root in selection | |||
