Skip to content

Commit

Permalink
Fix bug where \ is not pasted properly
Browse files Browse the repository at this point in the history
  • Loading branch information
apmasell committed Sep 20, 2014
1 parent dc918c9 commit b446601
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tmux_manager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,11 @@ namespace TabbedMux {
buffer.append_c ('\"');
break;

case '\\':
buffer.append_c ('\\');
buffer.append_c ('\\');
break;

default:
buffer.append_c (text[it]);
break;
Expand Down

0 comments on commit b446601

Please sign in to comment.