Skip to content

Commit

Permalink
Fix DOSKEY marcos expanding
Browse files Browse the repository at this point in the history
Merge pull request directvt#443 from o-sdn-o/vt-input-mode
  • Loading branch information
o-sdn-o authored Oct 21, 2023
2 parents b2f073b + 9c20eb2 commit 8fc6759
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions doc/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ Note: The following configuration sections are not implemented yet

#### Typical config (`~/.config/vtm/settings.xml`)

Note: The full defaut config is at [src/vtm.xml](../src/vtm.xml).

```xml
<config>
<menu wide=off selected=Term> <!-- Set selected using menu item id. -->
Expand Down
4 changes: 2 additions & 2 deletions src/netxs/desktopio/consrv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -656,8 +656,8 @@ struct impl : consrv
case 'g': result += '>'; break;
case 'l': result += '<'; break;
case 't': result += '&'; break;
case 'b': result += '|';
case '*': result += data; data.clear(); break;
case 'b': result += '|'; break;
case '*': result += rest; break;
default: result += s; break;
}
}
Expand Down

0 comments on commit 8fc6759

Please sign in to comment.