From 05d536fe10982612b8b6b0ecef6ee332ae17bc52 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Thu, 23 Feb 2017 19:46:05 +0100 Subject: [PATCH 1/8] Fix order for the README configuration section in the TOC --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e9d5f58..7dbad981 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ Nord Vim is a 16 colorspace theme build to run in GUI- and terminal mode with su - [Via plugin/runtimepath manager](#via-pluginruntimepath-manager) - [Manual](#manual) - [Activation](#activation) - - [Configuration](#configuration) - - [Italic comments](#italic-comments) + - [Configuration](#configuration) + - [Italic comments](#italic-comments) - [Plugin Support](#plugin-support) - [UI Plugins](#ui-plugins) - [Language Plugins](#language-plugins) From b2134029a0481c4bbb6d0cf586948afbc65818de Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Tue, 14 Mar 2017 20:39:15 +0100 Subject: [PATCH 2/8] GHI-#28 Fix typo in project description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7dbad981..5a3193f4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

-

A arctic, north-bluish clean and elegant Vim color theme.

+

An arctic, north-bluish clean and elegant Vim color theme.

Designed for a fluent and clear workflow.
Based on the Nord color palette.

From 566737ad8fa5c9e974fdd55be8620f47163e6ee3 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 26 Mar 2017 17:24:41 +0200 Subject: [PATCH 3/8] Update the URLs of the renamed terminal emulator port project Nord Tilix Related to https://github.com/arcticicestudio/nord-tilix/issues/15 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a3193f4..f76d8163 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Make sure to install one of the currently supported terminal themes listed below [![Nord PuTTY](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-putty-banner.svg)](https://github.com/arcticicestudio/nord-putty) [![Nord Terminal.app](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-terminal-app-banner.svg)](https://github.com/arcticicestudio/nord-terminal-app) [![Nord Terminator](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-terminator-banner.svg)](https://github.com/arcticicestudio/nord-terminator) -[![Nord Terminix](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-terminix-banner.svg)](https://github.com/arcticicestudio/nord-terminix) +[![Nord Tilix](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-tilix-banner.svg)](https://github.com/arcticicestudio/nord-tilix) [![Nord Termite](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-termite-banner.svg)](https://github.com/arcticicestudio/nord-termite) [![Nord XFCE Terminal](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-xfce-terminal-banner.svg)](https://github.com/arcticicestudio/nord-xfce-terminal) [![Nord Xresources](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-xresources-banner.svg)](https://github.com/arcticicestudio/nord-xresources) From a58f438526f1871f4be217631835c1176a0f68e7 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 1 Apr 2017 17:22:08 +0200 Subject: [PATCH 4/8] GHI-#29 Change font style of Ruby symbols to bold --- colors/nord.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/nord.vim b/colors/nord.vim index 6d2e8771..17bbf2ac 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -312,11 +312,11 @@ hi! link pythonBuiltin Type hi! link pythonEscape SpecialChar call s:hi("rubyConstant", s:nord7_gui, "", s:nord7_term, "", "", "") +call s:hi("rubySymbol", s:nord6_gui, "", s:nord6_term, "", "bold", "") hi! link rubyAttribute Identifier hi! link rubyInterpolationDelimiter Keyword hi! link rubyKeywordAsMethod Function hi! link rubyRegexp SpecialChar -hi! link rubySymbol Identifier call s:hi("sassClass", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("sassId", s:nord7_gui, "", s:nord7_term, "", "underline", "") From 89a7bc9b765cbf97e4799597dc3a3002f662d836 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 1 Apr 2017 17:23:35 +0200 Subject: [PATCH 5/8] GHI-#29 Use keyword color for block parameter list symbols --- colors/nord.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/nord.vim b/colors/nord.vim index 17bbf2ac..28c225af 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -314,6 +314,7 @@ hi! link pythonEscape SpecialChar call s:hi("rubyConstant", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("rubySymbol", s:nord6_gui, "", s:nord6_term, "", "bold", "") hi! link rubyAttribute Identifier +hi! link rubyBlockParameterList Operator hi! link rubyInterpolationDelimiter Keyword hi! link rubyKeywordAsMethod Function hi! link rubyRegexp SpecialChar From 4c2f784d7a4a49e25306a4e02c0d46a9b4691b1a Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 1 Apr 2017 17:24:23 +0200 Subject: [PATCH 6/8] GHI-#29 Fix color of language reserved keywords --- colors/nord.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/nord.vim b/colors/nord.vim index 28c225af..5cc0a47d 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -317,6 +317,7 @@ hi! link rubyAttribute Identifier hi! link rubyBlockParameterList Operator hi! link rubyInterpolationDelimiter Keyword hi! link rubyKeywordAsMethod Function +hi! link rubyPseudoVariable Keyword hi! link rubyRegexp SpecialChar call s:hi("sassClass", s:nord7_gui, "", s:nord7_term, "", "", "") From e315143a7335ff32e16bad0abff09ed40238324f Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 1 Apr 2017 17:25:12 +0200 Subject: [PATCH 7/8] GHI-#29 Use correct color for Ruby local (variable) methds --- colors/nord.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/nord.vim b/colors/nord.vim index 5cc0a47d..4e241a9c 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -317,6 +317,7 @@ hi! link rubyAttribute Identifier hi! link rubyBlockParameterList Operator hi! link rubyInterpolationDelimiter Keyword hi! link rubyKeywordAsMethod Function +hi! link rubyLocalVariableOrMethod Function hi! link rubyPseudoVariable Keyword hi! link rubyRegexp SpecialChar From 7fdb2cbe841b16ffaabcf0d7f862295bb5ed5bb5 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Mon, 17 Apr 2017 10:11:10 +0200 Subject: [PATCH 8/8] Prepare stable development release version 0.5.0 --- CHANGELOG.md | 15 +++++++++++++++ README.md | 4 ++-- autoload/airline/themes/nord.vim | 2 +- autoload/lightline/colorscheme/nord.vim | 2 +- colors/nord.vim | 2 +- 5 files changed, 20 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9fac032..31c9a409 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ --- +# 0.5.0 +*2017-04-17* +## Improvements +### Language Support +❯ Implemented optimized styles for Ruby (@hahuang65, #29, 085c1337) + - Symbols (`rubySymbol`) now have a bold font style + - Block parameter list symbols (`rubyBlockParameterList`) are now colorized as keywords + - Local (variable) methods (`rubyLocalVariableOrMethod`) are now colorized as methods + +

+ +## Bug Fixes +### Documentation +❯ Fixed a typo in the project description. (@arcticicestudio, #28, b2134029) + # 0.4.0 *2017-02-23* ## Features diff --git a/README.md b/README.md index f76d8163..ec0800a2 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Plug 'arcticicestudio/nord-vim', { 'branch': 'develop' } A specific version can be installed via git tags. ```vim -Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.4.0' } +Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.5.0' } ``` Of course it can be installed with any of your favorite tools: @@ -148,7 +148,7 @@ Detailed descriptions for supported languages can be found in the [project wiki] ![][scrot-lang-ruby] ## Development -[![](https://img.shields.io/badge/Changelog-0.4.0-81A1C1.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.4.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg)](https://github.com/arcticicestudio/arcver) +[![](https://img.shields.io/badge/Changelog-0.5.0-81A1C1.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.5.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg)](https://github.com/arcticicestudio/arcver) ### Contribution Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/arcticicestudio/nord-vim/issues). diff --git a/autoload/airline/themes/nord.vim b/autoload/airline/themes/nord.vim index e3d6d927..e1a73c24 100755 --- a/autoload/airline/themes/nord.vim +++ b/autoload/airline/themes/nord.vim @@ -6,7 +6,7 @@ " email development@arcticicestudio.com + " copyright Copyright (C) 2017 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -let s:nord_vim_version="0.4.0" +let s:nord_vim_version="0.5.0" let g:airline#themes#nord#palette = {} let s:nord0_gui = "#2E3440" diff --git a/autoload/lightline/colorscheme/nord.vim b/autoload/lightline/colorscheme/nord.vim index cf4dd755..100deff6 100755 --- a/autoload/lightline/colorscheme/nord.vim +++ b/autoload/lightline/colorscheme/nord.vim @@ -6,7 +6,7 @@ " email development@arcticicestudio.com + " copyright Copyright (C) 2017 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -let s:nord_vim_version="0.4.0" +let s:nord_vim_version="0.5.0" let s:p = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}, 'tabline': {}} let s:nord0 = ["#2E3440", "NONE"] diff --git a/colors/nord.vim b/colors/nord.vim index 4e241a9c..375d0691 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -14,7 +14,7 @@ if version > 580 endif let g:colors_name = "nord" -let s:nord_vim_version="0.4.0" +let s:nord_vim_version="0.5.0" set background=dark let s:nord0_gui = "#2E3440"