This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 267362
Collapse All | Expand All

(-)a/dlight.terminal/src/org/netbeans/modules/dlight/terminal/action/TerminalSupportImpl.java (-1 / +1 lines)
Lines 327-333 Link Here
327
                             *  "$@"    "$1" "$2" "$3" ... "${N}"
327
                             *  "$@"    "$1" "$2" "$3" ... "${N}"
328
                             */
328
                             */
329
                            final String promptCommand = "printf \"\033]3;${PWD}\007\"; " // NOI18N
329
                            final String promptCommand = "printf \"\033]3;${PWD}\007\"; " // NOI18N
330
                                    + IDE_OPEN + "() { printf \"\033]10;" + COMMAND_PREFIX + IDE_OPEN + " $*;\007\"; printf \"Opening $# file(s) ...\n\";}";   // NOI18N
330
                                    + IDE_OPEN + "() { printf \"\033]10;" + COMMAND_PREFIX + IDE_OPEN + " $*;\007\"; c=$(ls -1 $* 2> /dev/null | wc -l); printf \"Opening $c file(s) ...\n\";}";   // NOI18N
331
                            final String commandName = "PROMPT_COMMAND";                                    // NOI18N
331
                            final String commandName = "PROMPT_COMMAND";                                    // NOI18N
332
                            String usrPrompt = npb.getEnvironment().get(commandName);
332
                            String usrPrompt = npb.getEnvironment().get(commandName);
333
                            npb.getEnvironment().put(commandName,
333
                            npb.getEnvironment().put(commandName,

Return to bug 267362