summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2020-06-14feat(queries): allow for user overridesSteven Sojka
2020-06-07Merge pull request #69 from theHamsta/go-highlightsThomas Vigouroux
Go highlights
2020-06-07Add highlights.scm for GoStephan Seitz
2020-06-02Merge pull request #68 from TravonteD/htmlThomas Vigouroux
Add html highlight queries
2020-06-02Merge pull request #67 from TravonteD/cssThomas Vigouroux
Add css highlight queries
2020-06-02Add html highlight queriesTravonteD
2020-06-02Add css highlight queriesTravonteD
2020-06-01Fix example mappingsSantos Gallegos
2020-05-26Fix typo in README.md: foldexr -> foldexprStephan Seitz
2020-05-25docs: document foldingThomas Vigouroux
2020-05-16Add python locals.scmStephan Seitz
2020-05-16docs: update READMEThomas Vigouroux
2020-05-15Expose internal api.kiyan42
- add `exposed_state` to expose 'current_node' and 'cursor_pos' for a current buffer to the user. - add `get_buf_state` and `get_node_api` for users. - add documentation about api functions. - remove `node_movement` module which should be done in user side.
2020-05-12refacto/feat: better handling of parser updateskiyan42
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
2020-05-08Fix typo in README.mdStephan Seitz
2020-05-07docs: add statusline indicator informations.Thomas Vigouroux
Also document newly added parsers by adding them in the readme.
2020-05-03Add documentation for `node_movement`, rename: `textobj` -> ↵Stephan Seitz
`incremental_selection`
2020-05-01update docs for ensure installed, move modules config in config.moduleskiyan42
2020-04-28edit: add information to the readmekiyan42
- commands descriptions - list of supported languages
2020-04-23Fix spelling inconsistenciesTravonteD
2020-04-22Update README.mdKiyan Yazdani
Co-Authored-By: Thomas Vigouroux <39092278+vigoux@users.noreply.github.com>
2020-04-22Update README.mdKiyan Yazdani
Co-Authored-By: Thomas Vigouroux <39092278+vigoux@users.noreply.github.com>
2020-04-22fix: readme typoskiyan42
2020-04-22docs(README): update and add quickstartThomas Vigouroux
2020-04-18Create README.mdThomas Vigouroux