In Juno/Atom, there is the option to set the working directory to the location of the file being edited, using the PAckages->Julia->Working Directory->Current File’s Folder option (see shot)
How can I set a keybinding for this iterm?
In Juno/Atom, there is the option to set the working directory to the location of the file being edited, using the PAckages->Julia->Working Directory->Current File’s Folder option (see shot)
How can I set a keybinding for this iterm?
You could try adding:
'ctrl-shift-w': 'julia-client:work-in-file-folder'
to the Atom>Keymap… (keymap.cson
) file, under the 'atom-text-editor':
heading.
Thanks, works fine.