-
-
Notifications
You must be signed in to change notification settings - Fork 275
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
Fix syntax highlight inconsistencies in Go code #246
base: main
Are you sure you want to change the base?
Commits on Feb 8, 2021
-
Fix syntax highlight inconsistencies in Go code
Function calls and format specifier are not printed correctly. Usually people are using `faith/vim-go` to group these highlights. We add the corresponding color the vim-go groups. Still there are some groups that are not present/defined in vim-go. I've added a comment there for future fix. Signed-off-by: hoenirvili <hoenirvili@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1c8897d - Browse repository at this point
Copy the full SHA 1c8897dView commit details
Commits on Jun 9, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 1380ad6 - Browse repository at this point
Copy the full SHA 1380ad6View commit details
Commits on Jul 10, 2021
-
Add support for nvim-treesitter/nvim-treesitter (nordtheme#253)
Neovim version 0.5 [1] is a long-time awaited update that introduces features like tree-sitter [2][3] support and native LSP [4][5]. Even though Neovim devides more and more from Vim through specific features like first-class Lua support with custom APIs, the highlighting for tree-sitter is achived through "normal" syntax highlighting groups. Most of the groups are already linked by the nvim-treesitter plugin by default [6] so only a few groups have been adjuated for now to fit the Nord style. [1]: https://github.com/neovim/neovim/releases/tag/v0.5.0 [2]: https://github.com/tree-sitter/tree-sitter [3]: https://github.com/nvim-treesitter/nvim-treesitter [4]: https://neovim.io/doc/user/lsp.html [5]: https://github.com/neovim/nvim-lspconfig [6]: https://github.com/nvim-treesitter/nvim-treesitter/blob/90f15d9/plugin/nvim-treesitter.vim Co-authored-by: Ferran Jovell <ferran.jovell@gmail.com> Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com> Co-authored-by: Sven Greb <development@svengreb.de> Closes nordthemeGH-235
Configuration menu - View commit details
-
Copy full SHA for b3e712a - Browse repository at this point
Copy the full SHA b3e712aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d30ea87 - Browse repository at this point
Copy the full SHA d30ea87View commit details -
Configuration menu - View commit details
-
Copy full SHA for 851322a - Browse repository at this point
Copy the full SHA 851322aView commit details
Commits on Jul 11, 2021
-
Add support for pandoc (nordtheme#220)
Add support for `vim-pandoc/vim-pandoc-syntax` To improve syntax highlighting for Pandoc [1], support for the vim-pandoc/vim-pandoc-syntax [2] plugin has been implemented. Most groups are linked to existing Markdown groups to ensure a consistent style across languages and different plugins. Configurations used for testing: ```vim let g:pandoc#syntax#conceal#cchar_overrides = {"atx": "〉"} let g:nord_italic = 1 ``` Resources: - `g:pandoc#syntax#conceal#cchar_overrides` docs [3] - `s:cchars` definition [4] - Markdown "Extended Syntax" Guide [5] [1]: https://pandoc.org [2]: https://github.com/vim-pandoc/vim-pandoc-syntax [3]: https://github.com/vim-pandoc/vim-pandoc-syntax/blob/68d7249/doc/pandoc-syntax.txt#L45-L50 [4]: https://github.com/vim-pandoc/vim-pandoc-syntax/blob/5056e63/syntax/pandoc.vim#L37-L72 [5]: https://www.markdownguide.org/extended-syntax Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com> Co-authored-by: Sven Greb <development@svengreb.de> Closes nordthemeGH-220
Configuration menu - View commit details
-
Copy full SHA for 8d8b9bf - Browse repository at this point
Copy the full SHA 8d8b9bfView commit details
Commits on Sep 5, 2021
-
add support for Lsp codelens (nordtheme#266)
Support for LSP code lenses Before LSP code lenses [1] where code lenses were highlighted with the default color which has been changed to make it less visually intrusive, like other UI related elements, i.e. messages of linters. [1]: https://neovim.io/doc/user/lsp.html#lsp-highlight-codelens nordthemeGH-266 Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com>
Configuration menu - View commit details
-
Copy full SHA for 02ddfad - Browse repository at this point
Copy the full SHA 02ddfadView commit details
Commits on Sep 12, 2021
-
Remove
TSError
syntax highlighting group (nordtheme#270)The `TSError` group is used to highlight syntax/parser errors [1] which caused an aggressive styling where the background color of many syntax elements was rendered with `nord11` during typing. This was caused due to the fast processing of `tree-sitter` which also resulted in highlight flickering. This is a known problem and was fixed by many other themes (e.g. Dracula [2]) by removing the group again. One of the core maintainers of `nvim-treesitter` provided a solution by remapping groups [3] and also mentioned that the group is styled by the `nvim-treesitter` plugin but the active theme [4]. Syntax errors can still be highlighted through linters and parsers like Neovim's LSP [5] can still be used instead to highlight errors with the correct style (e.g. only change the foreground color of a single word). [1]: https://github.com/nvim-treesitter/nvim-treesitter/blob/fb5d6e04/doc/nvim-treesitter.txt#L493-L495 [2]: dracula/vim#232 [3]: nvim-treesitter/nvim-treesitter#78 (comment) [4]: nvim-treesitter/nvim-treesitter#1016 (comment) [5]: https://github.com/neovim/nvim-lspconfig Fixes nordthemeGH-269
Configuration menu - View commit details
-
Copy full SHA for e3e8a75 - Browse repository at this point
Copy the full SHA e3e8a75View commit details -
Configuration menu - View commit details
-
Copy full SHA for b64dc11 - Browse repository at this point
Copy the full SHA b64dc11View commit details -
Configuration menu - View commit details
-
Copy full SHA for df497a7 - Browse repository at this point
Copy the full SHA df497a7View commit details
Commits on Jan 1, 2022
-
Add support for neovim 0.6.0 diagnostic API highlight groups (nordthe…
…me#282) In Neovim `0.6.0` [1] the naming scheme for the highlight groups of the diagnostic API changed [2]. The new groups have been added as default while the previous groups are conditionally guarded when using Neovim `0.5.0`. [1]: https://github.com/neovim/neovim/releases/tag/v0.6.0 [2]: neovim/neovim@a5bbb93#diff-51fab2b766d0a3b606462e95de492190df173b7296147912307cdad636cd492aR77 Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com> Co-authored-by: Sven Greb <development@svengreb.de> nordthemeGH-282
Jan Steinke authoredJan 1, 2022 Configuration menu - View commit details
-
Copy full SHA for 8035ba0 - Browse repository at this point
Copy the full SHA 8035ba0View commit details
Commits on Jan 12, 2022
-
Add support for LSP textDocument/documentHighlight (nordtheme#284)
Support for Neovim LSP `documentHighlight` groups The Neovim LSP `textDocument` / `documentHightlight` groups [1] are responsible to highlight tokens in a document that are related to each other, e.g. decalred variables, using the `vim.buf.lsp.document_highlight()` function. Also see the LSP specification about "Document Highlights Request" [2] for more details. [1]: https://github.com/neovim/neovim/blob/f92a2457c2e7ad14d9a5a907ef4213fa770b6d95/runtime/doc/lsp.txt#L423 [2]: https://microsoft.github.io/language-server-protocol/specification#textDocument_documentHighlight Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com> Co-authored-by: Sven Greb <development@svengreb.de>
Configuration menu - View commit details
-
Copy full SHA for 3e4e273 - Browse repository at this point
Copy the full SHA 3e4e273View commit details
Commits on Jan 25, 2022
-
Improve readability of C language constants (nordtheme#283)
Improve readability of C language constants To improve the readability of C language constants, defined by the `cConstant` syntax highlighting group [1], these are now colored with `nord9` for the foreground to make them stand out. This is important in C, since interesting things are usually happening in their proximity, like checking/returning an error, passing particular values/flags to functions and so on. [1]: https://github.com/vim/vim/blob/0e6adf8a29d5c2c96c42cc7157f71bf22c2ad471/runtime/syntax/c.vim#L313-L375 Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com> Co-authored-by: Sven Greb <development@svengreb.de> nordthemeGH-283
Configuration menu - View commit details
-
Copy full SHA for b32592e - Browse repository at this point
Copy the full SHA b32592eView commit details
Commits on Feb 19, 2022
-
Add support for LSPSignatureHelpActiveParameter (nordtheme#286)
The `vim.lsp.buf.signature_help` function is used to highlight the active parameter in the signature help [1]. Before this commit the active parameter was not styled differently to any other parameter which made it hard to distinguish it. This has been improved by adding support for the `LspSignatureActiveParameter` syntax highlighting group where the active parameter now uses `nord8` are foreground color and additionally a font underline with the same color. [1]: https://github.com/neovim/neovim/blob/70db972e5fbcab39946ad8ac05472a693cf65b68/runtime/doc/lsp.txt#L456-L459 Co-authored-by: Sven Greb <development@svengreb.de> Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com> nordthemeGH-286
Configuration menu - View commit details
-
Copy full SHA for a825678 - Browse repository at this point
Copy the full SHA a825678View commit details
Commits on Mar 1, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 3a7771f - Browse repository at this point
Copy the full SHA 3a7771fView commit details
Commits on Apr 4, 2022
-
Signed-off-by: hoenirvili <hoenirvili@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 09aff38 - Browse repository at this point
Copy the full SHA 09aff38View commit details