在 Linux 中将 neovim 作为外部应用程序运行

在 Linux 中将 neovim 作为外部应用程序运行

我想neovim作为外部独立程序运行。我创建了一个这样的桌面文件:

[Desktop Entry]
Name=Neovim
Comment=Run nvim in konsole with customize options
Keywords=Text;Editor;Plaintext;Write;
MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
Exec=konsole --profile nvim --hide-tabbar --hide-menubar -e nvim
Type=Application
Icon=nvim
Terminal=false
Categories=Development;TextEditor;

现在,当我运行它时,Konsole会打开一个新窗口。我不希望它像这样。这意味着它不应该与Konsole任务管理器中的其他图标分组,我可以访问它。我的桌面是KDE Plasma,我能够使用窗口规则更改此打开的窗口的一些设置neovim,但不幸的是,仅此而已。

相关内容