Waffelson@lemmy.world to linuxmemes@lemmy.world · 7 months agoWhen you realized you forgot sudolemmy.worldimagemessage-square43fedilinkarrow-up1372arrow-down118
arrow-up1354arrow-down1imageWhen you realized you forgot sudolemmy.worldWaffelson@lemmy.world to linuxmemes@lemmy.world · 7 months agomessage-square43fedilink
minus-squareBjörn Tantau@swg-empire.delinkfedilinkarrow-up15·7 months agoIs there an editor that can request root privileges without restarting it? That would be quite useful.
minus-squareh3rm17@sh.itjust.workslinkfedilinkarrow-up11·7 months agoIn vim, in normal mode you can do: :w !sudo tee %
minus-squarez3rOR0ne@lemmy.mllinkfedilinkarrow-up3arrow-down1·7 months agoApparently that doesn’t work in NeoVim, so recently I installed the suda plugin. Personally, I just doas nvim and then the file name that needs root access, but it’s a handy plugin in case I forget.
minus-squaredream_weasel@sh.itjust.workslinkfedilinkarrow-up1·7 months ago??? I used this in neovim twice today :w !sudo tee % then reload when it asks.
minus-squareBotzo@lemmy.worldlinkfedilinkarrow-up5·7 months agoIt’s a simple trick in Vim: https://stackoverflow.com/a/7078429 For the lazy: :w !sudo tee > /dev/null %
minus-squaredjango@discuss.tchncs.delinkfedilinkEnglisharrow-up5·7 months agoSure, you can do this in emacs: https://fuco1.github.io/2017-04-20-Save-write-protected-files-with-sudo-automatically.html
minus-squareYodaDaCoda@sh.itjust.workslinkfedilinkEnglisharrow-up4·7 months agokate does this in KDE, but it’s not cli.
minus-squareEager Eagle@lemmy.worldlinkfedilinkEnglisharrow-up4·edit-27 months agomicro ftw, no need to even memorize a command, it’ll just ask if you want to use sudo
minus-squarehex_m_hell@slrpnk.netlinkfedilinkarrow-up4·edit-27 months agoYeah, in emacs you use tramp to open the file with /sudo::
Is there an editor that can request root privileges without restarting it? That would be quite useful.
In vim, in normal mode you can do:
:w !sudo tee %
Apparently that doesn’t work in NeoVim, so recently I installed the suda plugin.
Personally, I just doas nvim and then the file name that needs root access, but it’s a handy plugin in case I forget.
??? I used this in neovim twice today
:w !sudo tee %
then reload when it asks.i use micro
It’s a simple trick in Vim:
https://stackoverflow.com/a/7078429
For the lazy:
:w !sudo tee > /dev/null %
Sure, you can do this in emacs: https://fuco1.github.io/2017-04-20-Save-write-protected-files-with-sudo-automatically.html
(n)vim + suda.vim.
kate
does this in KDE, but it’s not cli.micro ftw, no need to even memorize a command, it’ll just ask if you want to use sudo
Yeah, in emacs you use
tramp
to open the file with/sudo::