summaryrefslogtreecommitdiff
path: root/lua
AgeCommit message (Collapse)Author
2020-05-23Merge pull request #56 from theHamsta/python-localsThomas Vigouroux
Add python locals.scm
2020-05-22Remove postspaces and avoid one globalStephan Seitz
2020-05-17Introduce `@include`Stephan Seitz
2020-05-15install: allow installing multiple parsers at onceThomas Vigouroux
This allow commands like so : :TSInstall c rust lua python
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-07fix: change locals extractionThomas Vigouroux
2020-05-07feat: support suggested highlightsThomas Vigouroux
2020-05-05feat: provide a statusline indicatorThomas Vigouroux
It will show the current branch at the cursor going the tree as such. root->node->subnode->leaf If an argument is provided to `statusline`, then the tree will be truncated as follows : ..->subnode->subnode
2020-05-03Add 'nvim-treesitter/node-movement'Stephan Seitz
2020-05-02modules: move textobj to incremental_selectionThomas Vigouroux
As suggested in #37, rename the textobj module to incremental_selection. Also adds a utility function to get the config of a module.
2020-05-01Merge pull request #36 from theHamsta/community-parsersKiyan Yazdani
Add some more community parsers
2020-05-01Add some more community parsersStephan Seitz
The haskell one really takes long to compile
2020-05-01update docs for ensure installed, move modules config in config.moduleskiyan42
2020-05-01Avoid global handle to enable installing multiple parsers in parallelStephan Seitz
2020-05-01Add `ensure_installed` option to configStephan Seitz
2020-05-01Add function 'nvim-treesitter/install'.ensure_installedStephan Seitz
2020-04-27fix install by changing cc arguments positionkiyan42
2020-04-26health(refactor): move checks inside health.luaThomas Vigouroux
2020-04-26health: add highlight to healthchecksThomas Vigouroux
2020-04-25refactor(textobj): remove unnecessary functionsThomas Vigouroux
2020-04-25refactor(textobj): use configs and don't use VimLThomas Vigouroux
2020-04-25textobj: little refactorThomas Vigouroux
2020-04-25textobj: add incremental scope selectionThomas Vigouroux
2020-04-25textobj: add incremental node selectionThomas Vigouroux
2020-04-25fix: config is enabled also checks parser existencekiyan42
2020-04-24feat/refacto: improve configurationskiyan42
- You should now get the configs through functions - Configs for languages are now inside a local object called parsers - You can get the parser installation configurations with `get_parser_configs` - A new object has been initialized inside configs to specify module config (called config). - Provide functions to enable/disable a module on one buffer - Provide functions to enable/disable a module on all buffers, and if filetype is specified, for specific filetype - Provide function to determine if module is activated for a specified filetype
2020-04-23fix: add -fPIC flag to compilinghaorenW1025
2020-04-22highlight: retain highlighters with the buffersThomas Vigouroux
2020-04-22feat: syntax highlightingThomas Vigouroux
2020-04-21feat/refacto: add configs.lua, setup installkiyan42
- configs.lua holds the `repositories` data - install health moved to health.lua - plugins loads _root.setup() on startup - install and list command are available through vim > use them with `:TSInstall lang` and `:TSInstallInfo`
2020-04-21fix: parser install tbl_flatten > unpackkiyan42
- fix parser install - format install.lua
2020-04-21Merge pull request #11 from kyazdani42/parser-listThomas Vigouroux
feat: add parser list
2020-04-21feat: add typescript installkiyan42
- add repo.location for typescript and compile at that location - typescript and tsx must be installed separately as two different parsers.
2020-04-21refacto/feat: enable csharp install, fix clonekiyan42
- clone only master at depth 1 to avoid long download from huge repos. - use ft to specify folder name to clone so csharp can be cloned and used properly.
2020-04-21fix: repositories from M.repositories since last merge.kiyan42
2020-04-21feat: add checkhealthkiyan42
2020-04-20Merge pull request #10 from vigoux/feature/node-utilsThomas Vigouroux
Node manipulation utilities
2020-04-20feat: add parser listkiyan42
2020-04-20feat: add node manipulation utilsThomas Vigouroux
2020-04-20feat: add most parserskiyan42
2020-04-20Merge pull request #4 from kyazdani42/improve-installerThomas Vigouroux
feat/refacto: improve installer
2020-04-20feat/refacto: improve installerkiyan42
2020-04-19perf: don't compute locals on buffer updatesThomas Vigouroux
Instead we lazily evaluate them on request. This allow two things : * better performances * being sure the locas are up to date
2020-04-19fix: prepare injections mechanismThomas Vigouroux
2020-04-19style: avoid overindenting thingsThomas Vigouroux
2020-04-19fix(matches): better storage of nodesThomas Vigouroux
2020-04-19feat: add locals to setup procedureThomas Vigouroux
2020-04-19feat: first version of localsThomas Vigouroux
Locals will be the main interface to treesitter, through some functions: get_definitions(bufnr) : returns all the definitions in bufnr get_scopes(bufnr): returns all definitions in bufnr get_references(bufnr): returns all references in bufnr
2020-04-19add parser installerkiyan42