Isaac Pei
Isaac Pei
thanks @mihem Do you mind briefly describing how your function/keybinding was implemented in VSpaceCode? ``` "command": "r.runCommandWithSelectionOrWord", "args": "str($$)" ``` Is the above all needed to make it working? I...
Looking at vscode-R source code, I think we can add some r functions here: https://github.com/REditorSupport/vscode-R/blob/54f924cd2efa053cb6615903aaa8952f28405f11/src/extension.ts#L68 such that ``` 'r.str': () => rTerminal.runSelectionOrWord(['str']), ``` I haven't worked on vscode plugin, will...
I found solutions for this: - instead of tweak the keybindings (add keybindings) through vim extension, I can directly add the keybinding as the following in the keybindings.json setup for...
thanks @benz0li @eitsupi The point of running the code and getting output into the Rscript, is really Rscript/text based/focused data analysis cycle, it's a lot of faster than jupyter, and...
I have some similar issue when viewing file types such as *.R - text file but not showing preview. Are there options to customize the specific viewer to use, and...
I am having similar issue on centOS 7 (sorry for the ancient system, but it's what I am using now): - install file-dev will fix the need for libmagic header...
I have org 8.2, but package install epresent shows that org-8 is not present. But once switched to latest orgmode melpa setups as here, the issue is resovled: https://orgmode.org/elpa.html (require...
@jtlandis these days I mostly use vscode R extension (https://github.com/REditorSupport/vscode-R ), which has really good evaluation/send code blocks to the terminal etc. Together with some keybindings, vscode/R can even mimics...
reporting the same issue on thinkpad carbon x1 gen6 ... eventually I had to go back to/restore windows system on the laptop, and performed firmware update under windows ... though...
Related, I am wondering if there is a method to return the raw text from each row (record), so that some fields could be manually extracted with the raw text....