Yuichiro Tachibana (Tsuchiya)
Yuichiro Tachibana (Tsuchiya)
Thank you. It seems `workbench.action.files.openFile` is not available on mac as https://github.com/microsoft/vscode/issues/5437#issuecomment-211500871 says, and I cannot check the behavior of that command on Windows and Linux now. I will do...
I tested `workbench.action.files.openFile` on Windows and it also opened a file selection dialog, which was not an appropriate behavior of `C-x C-f`.
If you are using macOS, setting `"editor.find.globalFindClipboard": false` in your config may help. Currently I don't know the way to implement it at extension level, though I'm searching it. ---...
Thank you for the detailed description. That's right, the current C-s behavior with mark-mode is not emulating the original one. I will work on it.
As you already mentioned, this is VSCode's native design and I'm not sure if it is possible too. I keep this issue opened and will investigate the solution later, but...
memo: https://www.atmarkit.co.jp/ait/articles/1805/11/news022.html
Assigning sequence of individual character keys (without modifiers) is not supported by VSCode yet: https://github.com/microsoft/vscode/issues/48129 Implementing these commands is possible, but we have difficulty at assigning keys to the commands.
Some of the commands are added in v0.32.0
Hi, yes, it will be, though I can't promise the date.
I implemented `C-x r t` and it is released in v0.36.0, while it does not fully emulate the original behavior. Please leave comments if there is some functionality you want...