Skip to content

Commit 271a018

Browse files
committed
Fix cmd+shift+a not select within tags anymore, disable key bindings for Color Highlighter plugin for now
1 parent 8a3e7f6 commit 271a018

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The recommended plugins are:
9999

100100
- [Alignment](https://github.com/wbond/sublime_alignment): Help align code for better readability (especially in long properties list). Shortcut has been switch to `ctrl + shift + a` due to conflicts with SublimeLinter
101101
- [All Autocomplete](https://github.com/alienhard/SublimeAllAutocomplete): List and suggest completion for all the words appeared in opened files
102-
- [Color Highlighter](): is a plugin for the Sublime text 2 and 3, which underlays selected hexadecimal colorcodes (like "#FFFFFF", "rgb(255,255,255)", "white", etc.) with their real color. Also, plugin adds color picker to easily modify colors.
102+
- [Color Highlighter](https://github.com/Monnoroch/ColorHighlighter): is a plugin for the Sublime text 2 and 3, which underlays selected hexadecimal colorcodes (like "#FFFFFF", "rgb(255,255,255)", "white", etc.) with their real color. Also, plugin adds color picker to easily modify colors.
103103
- [CSS3](https://github.com/y0ssar1an/CSS3): The most complete CSS support for Sublime Text 3
104104
- [DocBlockr](https://github.com/spadgos/sublime-jsdocs): Simplifies writing DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript...
105105
- [EditorConfig](https://github.com/sindresorhus/editorconfig-sublime): Helps developers maintain consistent coding styles between different editors. See `.editorconfig` snippet.
@@ -138,25 +138,33 @@ _Note: key bindings for the plugins to be added_
138138
139139
#### Key Bindings Modifiers
140140

141-
These key binding modifiers for OSX (`Default (OSX).sublime-keymap`) are to resolve conflicts among plugins (mostly with SublimeLinter) and add shortcuts to useful but hidden commands:
141+
These key binding modifiers for OSX (`Default (OSX).sublime-keymap`) are to resolve conflicts among plugins and add shortcuts to useful but hidden commands:
142142

143-
```json
143+
```js
144144
[
145+
// Reveal current opening file in sidebar:
145146
{"keys": ["ctrl+super+r"], "command": "reveal_in_side_bar"},
147+
// New key binding for Alignment plugin
146148
{"keys": ["shift+ctrl+a"], "command": "alignment"},
147-
{"keys": ["shift+ctrl+e"], "command": "px_to_em"}
149+
// New key binding for PxToEm plugin
150+
{"keys": ["shift+ctrl+e"], "command": "px_to_em"},
148151
]
149152
```
150153

151154
#### Other Preferences
152155

153-
##### Preferences
156+
##### `ColorHighlighter.sublime-settings`
157+
158+
- Disable its key bindings for now due to conflict with expand selection to tag (`super+shift+a`).
159+
- Add some additional extensions where color highlighting is expected.
160+
161+
##### `Emmet.sublime-settings`
154162
[TBC]
155163

156-
##### Emmet
164+
##### `Preferences.sublime-settings`
157165
[TBC]
158166

159-
##### FuzzyFilePath
167+
##### `FuzzyFilePath.sublime-settings`
160168
[TBC]
161169

162170
-------------------------------------------------------------------------------
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"default_keybindings": false,
3+
"file_exts": [".css", ".sass", ".scss", ".less", ".styl", ".html", ".js", ".sublime-settings", ".tmTheme", ".erb", ".haml", ".jsx"]
4+
}

0 commit comments

Comments
 (0)