Skip to content

Commit

Permalink
Don't show dumb terminal warning in IDE.
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcsmith-net committed Aug 26, 2024
1 parent 4f13619 commit 69dbee9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2021 Neil C Smith.
* Copyright 2024 Neil C Smith.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3 only, as
Expand Down Expand Up @@ -71,6 +71,7 @@ synchronized void attach(JLineTerminalIO service) {
terminal = TerminalBuilder
.builder()
.jna(true)
.dumb(true)
.build();
reader = LineReaderBuilder.builder()
.terminal(terminal)
Expand Down

0 comments on commit 69dbee9

Please sign in to comment.