-
SummaryWhen using the clipboard-yank and clipboard-paste-* commands, they never use the clipboard. clipboard-yank does nothing and clipboard-paste-replace replaces the selection with an empty string (). Reproduction StepsI have installed Helix from nixpkgs-unstable, my config is as so: { home-manager.users.nixos = {
programs.nushell = {
environmentVariables = {
EDITOR = "hx";
};
};
programs.helix = enabled {
settings.theme = "catppuccin_mocha";
settings.editor = {
color-modes = true;
cursor-shape.normal = "bar";
cursorline = true;
file-picker.hidden = false;
line-number = "relative";
shell = [
"nu"
"-c"
];
text-width = 100;
whitespace.render.tab = "all";
whitespace.characters.tab = "→";
};
settings.editor.auto-pairs = {
"(" = ")";
"{" = "}";
"[" = "]";
"\"" = "\"";
"'" = "'";
"<" = ">";
"`" = "`";
};
};
}; } Helix logNoting gets logged when i run these commands. PlatformLinux (NixOS) Terminal EmulatorKonsole 23.04.1 Helix Versionhelix 23.05 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Did you check https://github.com/helix-editor/helix/wiki/Troubleshooting#copypaste-fromto-system-clipboard-not-working? |
Beta Was this translation helpful? Give feedback.
-
I would have expected an error to tell me to install these packages |
Beta Was this translation helpful? Give feedback.
-
Same issue here! |
Beta Was this translation helpful? Give feedback.
Did you check https://github.com/helix-editor/helix/wiki/Troubleshooting#copypaste-fromto-system-clipboard-not-working?