Byobu's F2 key has no effect anymore, but Ctrl+F2 is fine - byobu

I used to be able to create new sessions with F2, and split panes with Shift/Ctrl + F2.
But since yesterday, F2 has no effect anymore. The other F2s and F shortcuts from byobu still work just fine. When I press F2, I am getting a bell from my terminal emulator.
I have not edited any of the ~/.byobu config files.
Using byobu 5.125 and tmux 2.6 in Terminator with bash.

Related

"pause" is not pausing the execution of script in Octave 5.1.0 in Windows 10

pause should stop the execution until something happens. But in my case where i have OCTAVE 5.1.0 on OS WINDOWS 10 is not doing its work properly. It does ignore all pause statements in script and execute the whole file.
I am running this program in my installed octave application in command window with GUI.
What may be the problem?
I have tried pause with function brackets
pause();and without function brackets pause; but still problem remains same.
%do something
plotData(X, y);
fprintf('Press enter to continue.');
pause;
%do something
plotData(X, y);
I except that script will first plot data and will stop execution till key is pressed to enable me to analyze data then after key press it would plot another plot with processed data.
But it just plot both plots in fast manner that i could not see it.
There are few bugs related to pause that have been introduced since version 5.1 and seem that recently have been fixed. It will be available in the next version. You can try alternative functions like kbhit or switch to a previous version.

How to stop/cancel a cucumber/ruby test when running from Sublime Text 3 (in Windows)?

I am able to launch a Cucumber/Ruby test from Sublime 3 in Windows by right clicking and choosing Ruby Test-Run Single Test.
Things brings up the Test Panel with the results, but how can I cancel this execution and stop it from keep on running?
I've tried: ctrl+z, ctrl+x, ctrl+c, ctrl+pause_break, ctrl+delete, esc, delete, pause_break, but the test keep on running and you need to wait until it's all done...
I was pressing those keys either in the Test Panel, the console, or the main screen with code.
If you know what I could try pls?

PHPStorm 10 randomly ignores AltGr +8/9 to open brackets

I have a weird situation with the new version of PHPStorm 10.0.2.
I have a german keyboard and to open square brackets [] i need to type a combination of AltGr + 8 or 9 keys.
All works ok until, at some point in time, randomly, this combinations are ignored and they are being interpreted as Alt+Strg (Alt+Ctrl on englisch keyboard) + 8 or 9 which jumps from curly brackets up and down.
This issue happens in Windows. Will update this question when I get to a linux machine, in case i can reproduce it.
german keyboard layout is the default one on the machine so no other languages.
Anyone has this issue and how can this be solved?
UPDATE 1:
If i press Alt + AltGr and 8 or 9 it works correctly...
UPDATE 2:
I tried in Linux ctrl+alt does not have the same effect like on windows. So it is a windows only issue
This was driving me insane!!!
However, it was not random (though I initially thought it was).
Steps to reproduce (German keyboard):
Open IDE
Open first project (AltGr + 8 or 9 will work as expected)
Open second project in a new window (AltGr + 8 or 9 will now start to switch projects and no longer work until only one window remains)
Steps to fix:
Open <SYSTEM DRIVE>\Users\<USER ACCOUNT NAME>\.<PRODUCT><VERSION>\config\options\keyboard.xml (e.g. C:\Users\John\.WebIde100\config\options\keyboard.xml)
Set "USE_NON_ENGLISH_KEYBOARD" to false
Did you enable "German layout support" option? See IDEA-142462 - may be related. Enabling actionSystem.force.alt.gr=true (https://youtrack.jetbrains.com/issue/IDEA-91975#comment=27-384169) may help...

WebStorm/PhpStorm, issue with terminal on Windows 10

I decided to try Windows 10, but having problem to make terminal works inside WebStorm/PhpStorm.
When I open terminal, sometimes it's completely black, sometimes it loads the project folder but I cannot type there. There is a way to run it in the external window, but I just got accustomed to work with console like internal window inside WebStorm/PhpStorm...
I tried cmd, Power Shell - same results.
Any ideas?
Workaround: Terminal works fine in Windows 10 if you use legacy console.
To do so, open a command prompt window, right click on the title, then select Properties. At the bottom, check "Use legacy console". Confirm the dialog window and go back to WebStorm to launch a new terminal. It should work.
In any case, this is the ticket to watch after:
https://youtrack.jetbrains.com/issue/IDEA-143300 -- star/vote/comment to get notified on progress.
UPDATE:
This issue has now been resolved -- the fix will arrive in next major version -- PhpStorm v10/WebStorm v11 (or whatever that version will be as long as it's based on 142.xx branch or newer).
UPDATE:
For those who have problems with right clicking and finding "Properties" menu entry:
Just for the record: I have confirmation from JetBrains that it will be fixed (i.e. work with non-legacy mode) in WebStorm 11 which is scheduled for the beginning of November. In the EAP version it should already work.

how to clear SublimeREPL window in Sublime 2

I'm using SublimeREPL in Sublime 2 (v2.0.2) under OS X. I send Python files to the SublimeREPL window for evaluation, and I'd like to clear the SublimeREPL window from time to time. The window seems to be read-only, so cmd-a, delete doesn't work.
Use ctrl+l on a linux/osx system; on windows it's shift+ctrl+c
SublimeRepl documentation is here SublimeRepl keys
Linux OS X Windows Command used Meaning
Alt+p Ctrl+p Alt+p repl_view_previous Walk back to previous input, no autocomplete
Down Down Down repl_view_next Walk back to next input, with autocomplete
Alt+n Ctrl+n Alt+n repl_view_next Walk back to next input, no autocomplete
Enter Enter Enter repl_enter Send current line to REPL
Esc Esc Esc repl_escape Clear REPL input
Ctrl+l Ctrl+l Shift+Ctrl+c repl_clear Clear REPL screen
Shift+Ctrl+c Shift+Ctrl+c Unsupported subprocess_repl_send_signal Send SIGINT to REPL