We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30bfd78 commit 63d5054Copy full SHA for 63d5054
scripts/copy_line.sh
@@ -78,6 +78,7 @@ end_of_line_in_copy_mode() {
78
79
yank_to_clipboard() {
80
if tmux_is_at_least 2.4; then
81
+ # shellcheck disable=SC2119
82
tmux send -X copy-pipe-and-cancel "$(clipboard_copy_command)"
83
else
84
tmux send-key "$(yank_wo_newline_key)"
scripts/copy_pane_pwd.sh
@@ -16,6 +16,7 @@ display_notice() {
16
17
main() {
18
local copy_command
19
20
copy_command="$(clipboard_copy_command)"
21
# $copy_command below should not be quoted
22
pane_current_path | tr -d '\n' | $copy_command
scripts/helpers.sh
@@ -1,4 +1,5 @@
1
#!bash
2
+# shellcheck disable=SC2239
3
4
yank_line="y"
5
yank_line_option="@yank_line"
0 commit comments