- Apr 24, 2018
-
-
Marijn Haverbeke authored
Issue #5370
-
- Apr 20, 2018
-
-
Marijn Haverbeke authored
-
wonderboyjon authored
By adding classes that clearly define when a hint is a table or a keyword, it gives developers easy control if they wish to style hints differently. For example, you may wish to style table hints in a different colour to keywords (to make them easier to distinguish).
-
Eric Bogard authored
sentence. Also added unit tests for the new movement operators.
-
Vadzim Ramanenka authored
-
Karol authored
-
- Apr 15, 2018
-
-
Bo authored
-
Marijn Haverbeke authored
Closes #5359
-
Marijn Haverbeke authored
Issue #5338
-
Bo Peng authored
-
- Apr 13, 2018
-
-
Adrian Heine authored
-
- Apr 12, 2018
-
-
Marijn Haverbeke authored
Issue #5356
-
Marijn Haverbeke authored
Issue #5179
-
- Apr 11, 2018
-
-
Mu-An ✌️ Chiou authored
Keypress should not happen during composing (as spec) but it does on Windows for Korean IMEs
-
Marijn Haverbeke authored
So that they don't consume commas.
-
- Apr 04, 2018
-
-
Prendota authored
-
- Apr 03, 2018
-
-
Prendota authored
-
Marijn Haverbeke authored
Closes #5343
-
Marijn Haverbeke authored
-
- Mar 29, 2018
-
-
Marijn Haverbeke authored
-
Tugrul Elmas authored
-
Prendota authored
-
hidaiy authored
-
Marijn Haverbeke authored
Closes #5333
-
Marijn Haverbeke authored
Closes #5332
-
- Mar 24, 2018
-
-
Marijn Haverbeke authored
Closes #5325
-
- Mar 22, 2018
-
-
Marijn Haverbeke authored
Closes #5320
-
- Mar 21, 2018
-
-
Raymond Hill authored
The merge view will incorrectly show a "Revert chunk" arrow when the text on both sides of the view are the empty string. The getChunks() helper is not prepared to deal with an empty diff array. The getDiff() helper returns an empty diff array when both strings to compare are empty, as the only diff item returned by diff_match_patch, `[0, ""]`, is removed as a result of the diff entry containing an empty string. The chosen (trivial) fix is to simply check for the empty diff array case at the top of getChunks().
-
- Mar 20, 2018
-
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Issue #5312
-
neon-dev authored
The hint logic of the `fromList` command did not respect the cursor position inside the token. Now it will list all matching completions for the substring up to the cursor, instead of only the ones matching the complete token. The behavior is now the same as for the regular autocompletion.
-
ryu-sato authored
Closes #5290
-
Raphael Amorim authored
-
Marijn Haverbeke authored
Closes #5316
-
- Mar 19, 2018
-
-
neon-dev authored
When using the editor in "application/json" mode, the standard javascript autocompletion would show up once triggered. Although it's deactivated by default and doesn't make sense to enable autocompletion in JSON mode on its own, this change fixes incorrect completions once you combine the default completion with your own custom logic.
-
- Mar 17, 2018
-
-
Raymond Hill authored
Primary motivation was to remove the use of `innerHTML` because the Firefox extension validator raises a warning about this. The obvious solution is to use `textContent` instead of `innerHTML` but I thought it could be useful to have the ability to pick a custom visual for the scroll-lock icon. As per MDN documentation, all the supported browsers as per CodeMirror documentation support `:after`.
-
- Mar 14, 2018
-
-
Randy Luecke authored
Fix for mouse events that get sent to the wrong document when the script is being run in a different frame than the editor.
-
- Mar 12, 2018
-
-
Chris Reeves authored
-