alt + shift not work
up vote
1
down vote
favorite
I use Alt + Shift to change the language. It is so normal and I have worked with that for a long time. But some days some thing have happen for me. That is Alt + Shift not work all times. For example I can use it on libreOffice to change the language and also on browses. But on some application it does not work. I do not know why.
For example on Taskque software, when I want to add my own task and change the language, Alt+Shift doesn't work.
keyboard
add a comment |
up vote
1
down vote
favorite
I use Alt + Shift to change the language. It is so normal and I have worked with that for a long time. But some days some thing have happen for me. That is Alt + Shift not work all times. For example I can use it on libreOffice to change the language and also on browses. But on some application it does not work. I do not know why.
For example on Taskque software, when I want to add my own task and change the language, Alt+Shift doesn't work.
keyboard
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I use Alt + Shift to change the language. It is so normal and I have worked with that for a long time. But some days some thing have happen for me. That is Alt + Shift not work all times. For example I can use it on libreOffice to change the language and also on browses. But on some application it does not work. I do not know why.
For example on Taskque software, when I want to add my own task and change the language, Alt+Shift doesn't work.
keyboard
I use Alt + Shift to change the language. It is so normal and I have worked with that for a long time. But some days some thing have happen for me. That is Alt + Shift not work all times. For example I can use it on libreOffice to change the language and also on browses. But on some application it does not work. I do not know why.
For example on Taskque software, when I want to add my own task and change the language, Alt+Shift doesn't work.
keyboard
keyboard
edited Aug 4 '14 at 13:08
Graham
2,17161527
2,17161527
asked Aug 4 '14 at 10:14
Mohammad Reza Rezwani
3,5692258109
3,5692258109
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
2
down vote
accepted
Perhaps this will help...
Open a terminal and run:
gksu gedit /etc/default/keyboard
(or use some other text editor)
Do following changes in the file:
XKBLAYOUT="de,us"
XKBVARIANT=""
XKBOPTIONS="grp:alt_shift_toggle"
(Replace de,us with your languages)
Restart and try again.
More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334
add a comment |
up vote
1
down vote
This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.
You can verify how Alt and Shift are not being detected simultaneously by running
$ xkbwatch
Notice how the blinky lights change for
ALTand forSHIFTindividually but not for both at the same time.
The output of
setxkbmap -query:
rules: evdev
model: pc105
layout: us,us,us
variant: ,intl,
options: grp:alt_shift_toggle,grp_led:scroll
^^^^^^^^^^^^^^^^^^^^
THIS IS THE PROBLEM
We will now unset ALTSHIFT toggle, so that it is not prematurely captured.
$ setxkbmap -option -option grp_led:scroll
^^^^^^^
DELIBERATELY EMPTY
The first empty
-optionerases all options, the second one just
carries over an option we want to keep. Additional-optionclauses can
preserve other preexisting options.
You can still change to next/previous input source with whatever is configured in
Ubuntu Settings/Keyboard/Typing. In my case it isSuper+Space(Super=Windows key in PCs).
Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.
I am now a happy Emacs and IntelliJ user.
This is a single command workaround.
New contributor
C. Daniel Mojoli B. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Perhaps this will help...
Open a terminal and run:
gksu gedit /etc/default/keyboard
(or use some other text editor)
Do following changes in the file:
XKBLAYOUT="de,us"
XKBVARIANT=""
XKBOPTIONS="grp:alt_shift_toggle"
(Replace de,us with your languages)
Restart and try again.
More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334
add a comment |
up vote
2
down vote
accepted
Perhaps this will help...
Open a terminal and run:
gksu gedit /etc/default/keyboard
(or use some other text editor)
Do following changes in the file:
XKBLAYOUT="de,us"
XKBVARIANT=""
XKBOPTIONS="grp:alt_shift_toggle"
(Replace de,us with your languages)
Restart and try again.
More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Perhaps this will help...
Open a terminal and run:
gksu gedit /etc/default/keyboard
(or use some other text editor)
Do following changes in the file:
XKBLAYOUT="de,us"
XKBVARIANT=""
XKBOPTIONS="grp:alt_shift_toggle"
(Replace de,us with your languages)
Restart and try again.
More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334
Perhaps this will help...
Open a terminal and run:
gksu gedit /etc/default/keyboard
(or use some other text editor)
Do following changes in the file:
XKBLAYOUT="de,us"
XKBVARIANT=""
XKBOPTIONS="grp:alt_shift_toggle"
(Replace de,us with your languages)
Restart and try again.
More Info http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html#id2521334
answered Aug 4 '14 at 12:29
TuKsn
3,43011437
3,43011437
add a comment |
add a comment |
up vote
1
down vote
This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.
You can verify how Alt and Shift are not being detected simultaneously by running
$ xkbwatch
Notice how the blinky lights change for
ALTand forSHIFTindividually but not for both at the same time.
The output of
setxkbmap -query:
rules: evdev
model: pc105
layout: us,us,us
variant: ,intl,
options: grp:alt_shift_toggle,grp_led:scroll
^^^^^^^^^^^^^^^^^^^^
THIS IS THE PROBLEM
We will now unset ALTSHIFT toggle, so that it is not prematurely captured.
$ setxkbmap -option -option grp_led:scroll
^^^^^^^
DELIBERATELY EMPTY
The first empty
-optionerases all options, the second one just
carries over an option we want to keep. Additional-optionclauses can
preserve other preexisting options.
You can still change to next/previous input source with whatever is configured in
Ubuntu Settings/Keyboard/Typing. In my case it isSuper+Space(Super=Windows key in PCs).
Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.
I am now a happy Emacs and IntelliJ user.
This is a single command workaround.
New contributor
C. Daniel Mojoli B. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
1
down vote
This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.
You can verify how Alt and Shift are not being detected simultaneously by running
$ xkbwatch
Notice how the blinky lights change for
ALTand forSHIFTindividually but not for both at the same time.
The output of
setxkbmap -query:
rules: evdev
model: pc105
layout: us,us,us
variant: ,intl,
options: grp:alt_shift_toggle,grp_led:scroll
^^^^^^^^^^^^^^^^^^^^
THIS IS THE PROBLEM
We will now unset ALTSHIFT toggle, so that it is not prematurely captured.
$ setxkbmap -option -option grp_led:scroll
^^^^^^^
DELIBERATELY EMPTY
The first empty
-optionerases all options, the second one just
carries over an option we want to keep. Additional-optionclauses can
preserve other preexisting options.
You can still change to next/previous input source with whatever is configured in
Ubuntu Settings/Keyboard/Typing. In my case it isSuper+Space(Super=Windows key in PCs).
Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.
I am now a happy Emacs and IntelliJ user.
This is a single command workaround.
New contributor
C. Daniel Mojoli B. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
1
down vote
up vote
1
down vote
This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.
You can verify how Alt and Shift are not being detected simultaneously by running
$ xkbwatch
Notice how the blinky lights change for
ALTand forSHIFTindividually but not for both at the same time.
The output of
setxkbmap -query:
rules: evdev
model: pc105
layout: us,us,us
variant: ,intl,
options: grp:alt_shift_toggle,grp_led:scroll
^^^^^^^^^^^^^^^^^^^^
THIS IS THE PROBLEM
We will now unset ALTSHIFT toggle, so that it is not prematurely captured.
$ setxkbmap -option -option grp_led:scroll
^^^^^^^
DELIBERATELY EMPTY
The first empty
-optionerases all options, the second one just
carries over an option we want to keep. Additional-optionclauses can
preserve other preexisting options.
You can still change to next/previous input source with whatever is configured in
Ubuntu Settings/Keyboard/Typing. In my case it isSuper+Space(Super=Windows key in PCs).
Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.
I am now a happy Emacs and IntelliJ user.
This is a single command workaround.
New contributor
C. Daniel Mojoli B. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
This bug made using emacs and IntelliJ Idea a nuisance under Ubuntu 18.04 LTS. I found a simple workaround.
You can verify how Alt and Shift are not being detected simultaneously by running
$ xkbwatch
Notice how the blinky lights change for
ALTand forSHIFTindividually but not for both at the same time.
The output of
setxkbmap -query:
rules: evdev
model: pc105
layout: us,us,us
variant: ,intl,
options: grp:alt_shift_toggle,grp_led:scroll
^^^^^^^^^^^^^^^^^^^^
THIS IS THE PROBLEM
We will now unset ALTSHIFT toggle, so that it is not prematurely captured.
$ setxkbmap -option -option grp_led:scroll
^^^^^^^
DELIBERATELY EMPTY
The first empty
-optionerases all options, the second one just
carries over an option we want to keep. Additional-optionclauses can
preserve other preexisting options.
You can still change to next/previous input source with whatever is configured in
Ubuntu Settings/Keyboard/Typing. In my case it isSuper+Space(Super=Windows key in PCs).
Repeat step number 2 again and notice how ALT and SHIFT now play together simultaneously.
I am now a happy Emacs and IntelliJ user.
This is a single command workaround.
New contributor
C. Daniel Mojoli B. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Nov 20 at 3:51
zx485
1,43831114
1,43831114
New contributor
C. Daniel Mojoli B. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered Nov 19 at 15:34
C. Daniel Mojoli B.
111
111
New contributor
C. Daniel Mojoli B. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
C. Daniel Mojoli B. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
C. Daniel Mojoli B. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f506620%2falt-shift-not-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown