about summary refs log tree commit diff
path: root/doc/languages-frameworks/vim.section.md
Commit message (Collapse)AuthorAge
* vimPlugins: update auto-commiting based on reviewryneeverett2020-04-01
| | | | | | | | | | | | | | | | | | - Use git.Repo(ROOT, search_parent_directories=True) to find nixpkgs repo. - Don't commit overrides.nix. - Remove "-a" short argument. - Remove "--commit" flag and commit by default. - Improve help/error messages. - Favor closure pattern over classes.Use a closure to wrap the update function with state rather than a callable class. - break NixpkgsRepo class into functions - Optional None-type arguments - Remove repo checks from update.py. Git is too flexible and permits too many workflows for my attempt to replace documentation with code to work. My goal would be to separate the `--add` functionality from the update functionality in the near term and then there will be no reason for this usage to create commits anyway.
* vimPlugins: update.py --add <plugin> argumentryneeverett2020-04-01
| | | | | - update.py's new --add argument replaces manual editing of vim-plugin-names for basic use cases.
* vimPlugins: automatically commit updateryneeverett2020-04-01
|
* doc: organize chapters into parts, and reduce toc depthFrederik Rietdijk2019-10-20
| | | | | | | | | Reorganize the chapters into parts and reduce the TOC depth to make the TOC useful again. The top-level TOC is very brief, but that is fine because every part will have its own TOC. Section titles of languages/frameworks are also simplified to just the name of the language/framework.
* Cleanup formatting in Vim plugin docsMalo Bourgon2019-07-14
|
* Update documentation about adding new Vim plugins to nixpkgsMalo Bourgon2019-07-14
|
* treewide: Change URLs to HTTPSDaniel Schaefer2019-04-22
| | | | | | Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them if there's actual content. Inspired by https://github.com/NixOS/nixpkgs/issues/60004
* doc: add neovim-qt configurationTimo Kaufmann2019-01-06
|
* vimUtils: add dependency logic to nativeImplTimo Kaufmann2018-12-24
| | | | nativeImpl previously simply ignored dependency information.
* clarifying `name` arg determines vim command nameTrolli Schmittlauch2018-10-24
| | | | | | | | The `name` arg of `vim_configurable.customize` does not only determine the package name, but also the name of the command/ executable to be called. In my opinion this is not documented properly and finding that out took me several hours.
* doc/vim: remove some vim-plug redundancyJörg Thalheim2018-09-20
|
* doc: Add section about vim-plugRoman Volosatovs2018-09-20
|
* vim-plugins: rewrite updaterJörg Thalheim2018-09-09
| | | | | | | | | | | | | | | | A new python script has been added to replace the aged viml-based updater. The new updater has the following advantages: - use rss feeds to check for updates quicker - parallel downloads & better caching - uses proper override mechanism instead of text substitution - update generated files in-place instead of having to insert updated plugins manually Automatically reading `dependencies` from the plugins directory has been not re-implemented. This has been mostly been used by Mark Weber's plugins, which seem to no longer receive regular updates. This could be implemented in future as required.
* doc/vim: improve plugin documentationJörg Thalheim2018-09-09
|
* Move all nixpkgs doc files in to the doc directoryGraham Christensen2018-03-25
This makes a makefile-driven developer workflow nicer.