Harutyun Amirjanyan

Results 66 comments of Harutyun Amirjanyan

@rahmanusta you can use `editor.session.$selectLongWords = true`

@malavshah9 are you seeing this with the current version of react-ace? this used to happen with the older version, which was using the old version of ace, which had this...

Hi, a diff viewer component would be welcome in underlying ace project too. We have an old implementation that uses diff_match_patch internally https://github.com/c9/core/blob/master/plugins/c9.ide.scm/diff/index.html, but it doesn't work very well either

You need to either include the webpack-resolver ```js import "ace-builds/webpack-resolver"; ``` or configure the url for each mode separately ```js import jsonWorkerUrl from "file-loader!ace-builds/src-noconflict/worker-json"; ace.config.setModuleUrl("ace/mode/json_worker", jsonWorkerUrl) ``` ```js import cssWorkerUrl...

@wenxiwu777 do you see the same issue on https://ace.c9.io/ ? not handling IME was an error in older version of ace, but it was solved recently. @Neira1991 cursor offset is...

100% will fit the parent, to fit the content use maxLines and minLInes options of ace as shown in https://ace.c9.io/demo/autoresize.html

The main version of this file is still the [one in cm5](https://github.com/codemirror/CodeMirror/blob/master/keymap/vim.js) so we should try to make all changes there. But there is one bigger problem here: this changes...

Running `:noremap i h` in vim 8.2.8 produces the same result as in codemirror-vim. Maybe there is some other option in vim that needs to be turned on to allow...

Browsers do not provide access to the selection clipboard so * can't work correctly. Should it be an alias for +, or should it just stay unimplemented?

You can use `editor.textInput.getElement().ariaLabel="a useful label here"` to set a label.