How to configure compose key in Ubuntu 14.04
I frequently use the compose key to type special characters. I now have a fresh install of Ubuntu 14.04, and in the keyboard settings it says "compose key: disabled". I can't find how to set the compose key.
keyboard compose-key
add a comment |
I frequently use the compose key to type special characters. I now have a fresh install of Ubuntu 14.04, and in the keyboard settings it says "compose key: disabled". I can't find how to set the compose key.
keyboard compose-key
add a comment |
I frequently use the compose key to type special characters. I now have a fresh install of Ubuntu 14.04, and in the keyboard settings it says "compose key: disabled". I can't find how to set the compose key.
keyboard compose-key
I frequently use the compose key to type special characters. I now have a fresh install of Ubuntu 14.04, and in the keyboard settings it says "compose key: disabled". I can't find how to set the compose key.
keyboard compose-key
keyboard compose-key
edited Dec 30 '18 at 16:18
clearkimura
3,78211953
3,78211953
asked Apr 22 '14 at 9:40
Christine
2081210
2081210
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
You will need to install dconf Editor from the Ubuntu Software Centre so it will appear in your applications.
If you use an applications list it appears under Sundry or if not in your Activities Overview (type dconf in the ~type to search~ box).
There are other ways of achieving your aim but this is a simple gui method not needing terminal skills.
$ dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:{key}']"
where {key}
is your chosen key-name (e.g. "['compose:ralt']"
would make right alt your compose key.
1
u bent van harte welkom. veel succes
– user265064
Apr 25 '14 at 9:06
3
You don't "need" to installdconf-editor
just for this purpose. See the answer from @lovestha below.
– chaskes
Jul 31 '14 at 4:04
7
For completeness of this answer (mentioned in other answer): xkboptions can be found atorg > gnome > desktop > input-sources
. Options for key can be found in the manpage forxkeyboard-config
, which can be found by typingman xkeyboard-config
in a terminal, or in this page: dsm.fordham.edu/cgi-bin/…. Search for "Compose key" (which can be done in the terminal manpage by pressing/
and then typing your query, followed by enter).
– Daan Wilmer
Aug 25 '14 at 17:18
2
The answer from @LovesTha below is so much simpler.
– David Dossot
Oct 27 '14 at 1:28
2
@DavidDossot simpler if and only if you want to choose your compose key from that 6 given. because FU, thats why.
– törzsmókus
Mar 31 '15 at 16:33
|
show 4 more comments
In keyboard settings -> Shortcuts -> Typing -> Compose Key
Click the 'Disabled' across from Compose Key and select the key you want.
1
Not sure why it took someone so long to post the easiest solution. Absolutely no need to usedconf-editor
to setup hotkeys. +1
– ElefantPhace
Jul 31 '14 at 4:12
I think it took so long because when I asked this question, this didn't work. Or I wouldn't have asked the question. Now it does work on my computer, so the question is kind of obsolete. btw, how do I find out why my question gave me negative points?
– Christine
Jul 31 '14 at 16:05
1
The downside of this is that not every key is available: right ctrl/alt/win, left ctrl, menu, or caps lock. I, for one, prefer the Scroll Lock key to be the compose key.
– Daan Wilmer
Aug 25 '14 at 17:13
1
@ElefantPhace This is definitely a nicer option, but at least the accepted answer has the benefit that it will probably work even after another interface change (which wouldn't surprise me since, after all, it's not really clear at all why the position of a key would be considered a shortcut.
– Joshua Taylor
Sep 3 '14 at 13:17
1
the key I want is not there among the options. what a stupid idea that I cannot choose any key.
– törzsmókus
Mar 31 '15 at 16:15
|
show 2 more comments
From Ubuntu 14.04
Sundry → dconf → org → gnome → desktop → input-sources → xkboptions
e.g. to set the Alt Gr key as compose:
['compose:ralt']
I'm sorry, I need more help. The only "Sundry" I can find is a file named X-GNOME-Sundry.directory but it doesn't contain a directory name.
– Christine
Apr 23 '14 at 15:58
add a comment |
When you start the dconf editor, select the down pointing triangles in this order: org, desktop, input-sources all within the left pane. Each of these expands a menu where you can select the next option. After you pick input-sources, you will see the xkboptions in the right panel, select that and you can enter your choice as outlined above.
add a comment |
Just click on the "disabled" and choose any of the available keys in the appeared drop-down list. Than you can hit the key and type key combinations. For example
<Key> o / gives ø symbol.
<Key> . . gives … symbol
<Key> a ' gives à
and so one
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f452705%2fhow-to-configure-compose-key-in-ubuntu-14-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
You will need to install dconf Editor from the Ubuntu Software Centre so it will appear in your applications.
If you use an applications list it appears under Sundry or if not in your Activities Overview (type dconf in the ~type to search~ box).
There are other ways of achieving your aim but this is a simple gui method not needing terminal skills.
$ dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:{key}']"
where {key}
is your chosen key-name (e.g. "['compose:ralt']"
would make right alt your compose key.
1
u bent van harte welkom. veel succes
– user265064
Apr 25 '14 at 9:06
3
You don't "need" to installdconf-editor
just for this purpose. See the answer from @lovestha below.
– chaskes
Jul 31 '14 at 4:04
7
For completeness of this answer (mentioned in other answer): xkboptions can be found atorg > gnome > desktop > input-sources
. Options for key can be found in the manpage forxkeyboard-config
, which can be found by typingman xkeyboard-config
in a terminal, or in this page: dsm.fordham.edu/cgi-bin/…. Search for "Compose key" (which can be done in the terminal manpage by pressing/
and then typing your query, followed by enter).
– Daan Wilmer
Aug 25 '14 at 17:18
2
The answer from @LovesTha below is so much simpler.
– David Dossot
Oct 27 '14 at 1:28
2
@DavidDossot simpler if and only if you want to choose your compose key from that 6 given. because FU, thats why.
– törzsmókus
Mar 31 '15 at 16:33
|
show 4 more comments
You will need to install dconf Editor from the Ubuntu Software Centre so it will appear in your applications.
If you use an applications list it appears under Sundry or if not in your Activities Overview (type dconf in the ~type to search~ box).
There are other ways of achieving your aim but this is a simple gui method not needing terminal skills.
$ dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:{key}']"
where {key}
is your chosen key-name (e.g. "['compose:ralt']"
would make right alt your compose key.
1
u bent van harte welkom. veel succes
– user265064
Apr 25 '14 at 9:06
3
You don't "need" to installdconf-editor
just for this purpose. See the answer from @lovestha below.
– chaskes
Jul 31 '14 at 4:04
7
For completeness of this answer (mentioned in other answer): xkboptions can be found atorg > gnome > desktop > input-sources
. Options for key can be found in the manpage forxkeyboard-config
, which can be found by typingman xkeyboard-config
in a terminal, or in this page: dsm.fordham.edu/cgi-bin/…. Search for "Compose key" (which can be done in the terminal manpage by pressing/
and then typing your query, followed by enter).
– Daan Wilmer
Aug 25 '14 at 17:18
2
The answer from @LovesTha below is so much simpler.
– David Dossot
Oct 27 '14 at 1:28
2
@DavidDossot simpler if and only if you want to choose your compose key from that 6 given. because FU, thats why.
– törzsmókus
Mar 31 '15 at 16:33
|
show 4 more comments
You will need to install dconf Editor from the Ubuntu Software Centre so it will appear in your applications.
If you use an applications list it appears under Sundry or if not in your Activities Overview (type dconf in the ~type to search~ box).
There are other ways of achieving your aim but this is a simple gui method not needing terminal skills.
$ dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:{key}']"
where {key}
is your chosen key-name (e.g. "['compose:ralt']"
would make right alt your compose key.
You will need to install dconf Editor from the Ubuntu Software Centre so it will appear in your applications.
If you use an applications list it appears under Sundry or if not in your Activities Overview (type dconf in the ~type to search~ box).
There are other ways of achieving your aim but this is a simple gui method not needing terminal skills.
$ dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:{key}']"
where {key}
is your chosen key-name (e.g. "['compose:ralt']"
would make right alt your compose key.
edited Mar 19 '15 at 22:56
Jesse Dhillon
32
32
answered Apr 25 '14 at 0:27
user265064
1364
1364
1
u bent van harte welkom. veel succes
– user265064
Apr 25 '14 at 9:06
3
You don't "need" to installdconf-editor
just for this purpose. See the answer from @lovestha below.
– chaskes
Jul 31 '14 at 4:04
7
For completeness of this answer (mentioned in other answer): xkboptions can be found atorg > gnome > desktop > input-sources
. Options for key can be found in the manpage forxkeyboard-config
, which can be found by typingman xkeyboard-config
in a terminal, or in this page: dsm.fordham.edu/cgi-bin/…. Search for "Compose key" (which can be done in the terminal manpage by pressing/
and then typing your query, followed by enter).
– Daan Wilmer
Aug 25 '14 at 17:18
2
The answer from @LovesTha below is so much simpler.
– David Dossot
Oct 27 '14 at 1:28
2
@DavidDossot simpler if and only if you want to choose your compose key from that 6 given. because FU, thats why.
– törzsmókus
Mar 31 '15 at 16:33
|
show 4 more comments
1
u bent van harte welkom. veel succes
– user265064
Apr 25 '14 at 9:06
3
You don't "need" to installdconf-editor
just for this purpose. See the answer from @lovestha below.
– chaskes
Jul 31 '14 at 4:04
7
For completeness of this answer (mentioned in other answer): xkboptions can be found atorg > gnome > desktop > input-sources
. Options for key can be found in the manpage forxkeyboard-config
, which can be found by typingman xkeyboard-config
in a terminal, or in this page: dsm.fordham.edu/cgi-bin/…. Search for "Compose key" (which can be done in the terminal manpage by pressing/
and then typing your query, followed by enter).
– Daan Wilmer
Aug 25 '14 at 17:18
2
The answer from @LovesTha below is so much simpler.
– David Dossot
Oct 27 '14 at 1:28
2
@DavidDossot simpler if and only if you want to choose your compose key from that 6 given. because FU, thats why.
– törzsmókus
Mar 31 '15 at 16:33
1
1
u bent van harte welkom. veel succes
– user265064
Apr 25 '14 at 9:06
u bent van harte welkom. veel succes
– user265064
Apr 25 '14 at 9:06
3
3
You don't "need" to install
dconf-editor
just for this purpose. See the answer from @lovestha below.– chaskes
Jul 31 '14 at 4:04
You don't "need" to install
dconf-editor
just for this purpose. See the answer from @lovestha below.– chaskes
Jul 31 '14 at 4:04
7
7
For completeness of this answer (mentioned in other answer): xkboptions can be found at
org > gnome > desktop > input-sources
. Options for key can be found in the manpage for xkeyboard-config
, which can be found by typing man xkeyboard-config
in a terminal, or in this page: dsm.fordham.edu/cgi-bin/…. Search for "Compose key" (which can be done in the terminal manpage by pressing /
and then typing your query, followed by enter).– Daan Wilmer
Aug 25 '14 at 17:18
For completeness of this answer (mentioned in other answer): xkboptions can be found at
org > gnome > desktop > input-sources
. Options for key can be found in the manpage for xkeyboard-config
, which can be found by typing man xkeyboard-config
in a terminal, or in this page: dsm.fordham.edu/cgi-bin/…. Search for "Compose key" (which can be done in the terminal manpage by pressing /
and then typing your query, followed by enter).– Daan Wilmer
Aug 25 '14 at 17:18
2
2
The answer from @LovesTha below is so much simpler.
– David Dossot
Oct 27 '14 at 1:28
The answer from @LovesTha below is so much simpler.
– David Dossot
Oct 27 '14 at 1:28
2
2
@DavidDossot simpler if and only if you want to choose your compose key from that 6 given. because FU, thats why.
– törzsmókus
Mar 31 '15 at 16:33
@DavidDossot simpler if and only if you want to choose your compose key from that 6 given. because FU, thats why.
– törzsmókus
Mar 31 '15 at 16:33
|
show 4 more comments
In keyboard settings -> Shortcuts -> Typing -> Compose Key
Click the 'Disabled' across from Compose Key and select the key you want.
1
Not sure why it took someone so long to post the easiest solution. Absolutely no need to usedconf-editor
to setup hotkeys. +1
– ElefantPhace
Jul 31 '14 at 4:12
I think it took so long because when I asked this question, this didn't work. Or I wouldn't have asked the question. Now it does work on my computer, so the question is kind of obsolete. btw, how do I find out why my question gave me negative points?
– Christine
Jul 31 '14 at 16:05
1
The downside of this is that not every key is available: right ctrl/alt/win, left ctrl, menu, or caps lock. I, for one, prefer the Scroll Lock key to be the compose key.
– Daan Wilmer
Aug 25 '14 at 17:13
1
@ElefantPhace This is definitely a nicer option, but at least the accepted answer has the benefit that it will probably work even after another interface change (which wouldn't surprise me since, after all, it's not really clear at all why the position of a key would be considered a shortcut.
– Joshua Taylor
Sep 3 '14 at 13:17
1
the key I want is not there among the options. what a stupid idea that I cannot choose any key.
– törzsmókus
Mar 31 '15 at 16:15
|
show 2 more comments
In keyboard settings -> Shortcuts -> Typing -> Compose Key
Click the 'Disabled' across from Compose Key and select the key you want.
1
Not sure why it took someone so long to post the easiest solution. Absolutely no need to usedconf-editor
to setup hotkeys. +1
– ElefantPhace
Jul 31 '14 at 4:12
I think it took so long because when I asked this question, this didn't work. Or I wouldn't have asked the question. Now it does work on my computer, so the question is kind of obsolete. btw, how do I find out why my question gave me negative points?
– Christine
Jul 31 '14 at 16:05
1
The downside of this is that not every key is available: right ctrl/alt/win, left ctrl, menu, or caps lock. I, for one, prefer the Scroll Lock key to be the compose key.
– Daan Wilmer
Aug 25 '14 at 17:13
1
@ElefantPhace This is definitely a nicer option, but at least the accepted answer has the benefit that it will probably work even after another interface change (which wouldn't surprise me since, after all, it's not really clear at all why the position of a key would be considered a shortcut.
– Joshua Taylor
Sep 3 '14 at 13:17
1
the key I want is not there among the options. what a stupid idea that I cannot choose any key.
– törzsmókus
Mar 31 '15 at 16:15
|
show 2 more comments
In keyboard settings -> Shortcuts -> Typing -> Compose Key
Click the 'Disabled' across from Compose Key and select the key you want.
In keyboard settings -> Shortcuts -> Typing -> Compose Key
Click the 'Disabled' across from Compose Key and select the key you want.
answered Jul 31 '14 at 4:02
LovesTha
432513
432513
1
Not sure why it took someone so long to post the easiest solution. Absolutely no need to usedconf-editor
to setup hotkeys. +1
– ElefantPhace
Jul 31 '14 at 4:12
I think it took so long because when I asked this question, this didn't work. Or I wouldn't have asked the question. Now it does work on my computer, so the question is kind of obsolete. btw, how do I find out why my question gave me negative points?
– Christine
Jul 31 '14 at 16:05
1
The downside of this is that not every key is available: right ctrl/alt/win, left ctrl, menu, or caps lock. I, for one, prefer the Scroll Lock key to be the compose key.
– Daan Wilmer
Aug 25 '14 at 17:13
1
@ElefantPhace This is definitely a nicer option, but at least the accepted answer has the benefit that it will probably work even after another interface change (which wouldn't surprise me since, after all, it's not really clear at all why the position of a key would be considered a shortcut.
– Joshua Taylor
Sep 3 '14 at 13:17
1
the key I want is not there among the options. what a stupid idea that I cannot choose any key.
– törzsmókus
Mar 31 '15 at 16:15
|
show 2 more comments
1
Not sure why it took someone so long to post the easiest solution. Absolutely no need to usedconf-editor
to setup hotkeys. +1
– ElefantPhace
Jul 31 '14 at 4:12
I think it took so long because when I asked this question, this didn't work. Or I wouldn't have asked the question. Now it does work on my computer, so the question is kind of obsolete. btw, how do I find out why my question gave me negative points?
– Christine
Jul 31 '14 at 16:05
1
The downside of this is that not every key is available: right ctrl/alt/win, left ctrl, menu, or caps lock. I, for one, prefer the Scroll Lock key to be the compose key.
– Daan Wilmer
Aug 25 '14 at 17:13
1
@ElefantPhace This is definitely a nicer option, but at least the accepted answer has the benefit that it will probably work even after another interface change (which wouldn't surprise me since, after all, it's not really clear at all why the position of a key would be considered a shortcut.
– Joshua Taylor
Sep 3 '14 at 13:17
1
the key I want is not there among the options. what a stupid idea that I cannot choose any key.
– törzsmókus
Mar 31 '15 at 16:15
1
1
Not sure why it took someone so long to post the easiest solution. Absolutely no need to use
dconf-editor
to setup hotkeys. +1– ElefantPhace
Jul 31 '14 at 4:12
Not sure why it took someone so long to post the easiest solution. Absolutely no need to use
dconf-editor
to setup hotkeys. +1– ElefantPhace
Jul 31 '14 at 4:12
I think it took so long because when I asked this question, this didn't work. Or I wouldn't have asked the question. Now it does work on my computer, so the question is kind of obsolete. btw, how do I find out why my question gave me negative points?
– Christine
Jul 31 '14 at 16:05
I think it took so long because when I asked this question, this didn't work. Or I wouldn't have asked the question. Now it does work on my computer, so the question is kind of obsolete. btw, how do I find out why my question gave me negative points?
– Christine
Jul 31 '14 at 16:05
1
1
The downside of this is that not every key is available: right ctrl/alt/win, left ctrl, menu, or caps lock. I, for one, prefer the Scroll Lock key to be the compose key.
– Daan Wilmer
Aug 25 '14 at 17:13
The downside of this is that not every key is available: right ctrl/alt/win, left ctrl, menu, or caps lock. I, for one, prefer the Scroll Lock key to be the compose key.
– Daan Wilmer
Aug 25 '14 at 17:13
1
1
@ElefantPhace This is definitely a nicer option, but at least the accepted answer has the benefit that it will probably work even after another interface change (which wouldn't surprise me since, after all, it's not really clear at all why the position of a key would be considered a shortcut.
– Joshua Taylor
Sep 3 '14 at 13:17
@ElefantPhace This is definitely a nicer option, but at least the accepted answer has the benefit that it will probably work even after another interface change (which wouldn't surprise me since, after all, it's not really clear at all why the position of a key would be considered a shortcut.
– Joshua Taylor
Sep 3 '14 at 13:17
1
1
the key I want is not there among the options. what a stupid idea that I cannot choose any key.
– törzsmókus
Mar 31 '15 at 16:15
the key I want is not there among the options. what a stupid idea that I cannot choose any key.
– törzsmókus
Mar 31 '15 at 16:15
|
show 2 more comments
From Ubuntu 14.04
Sundry → dconf → org → gnome → desktop → input-sources → xkboptions
e.g. to set the Alt Gr key as compose:
['compose:ralt']
I'm sorry, I need more help. The only "Sundry" I can find is a file named X-GNOME-Sundry.directory but it doesn't contain a directory name.
– Christine
Apr 23 '14 at 15:58
add a comment |
From Ubuntu 14.04
Sundry → dconf → org → gnome → desktop → input-sources → xkboptions
e.g. to set the Alt Gr key as compose:
['compose:ralt']
I'm sorry, I need more help. The only "Sundry" I can find is a file named X-GNOME-Sundry.directory but it doesn't contain a directory name.
– Christine
Apr 23 '14 at 15:58
add a comment |
From Ubuntu 14.04
Sundry → dconf → org → gnome → desktop → input-sources → xkboptions
e.g. to set the Alt Gr key as compose:
['compose:ralt']
From Ubuntu 14.04
Sundry → dconf → org → gnome → desktop → input-sources → xkboptions
e.g. to set the Alt Gr key as compose:
['compose:ralt']
edited Apr 23 '14 at 4:20
Seth♦
34k26110161
34k26110161
answered Apr 23 '14 at 3:21
cpmman
1
1
I'm sorry, I need more help. The only "Sundry" I can find is a file named X-GNOME-Sundry.directory but it doesn't contain a directory name.
– Christine
Apr 23 '14 at 15:58
add a comment |
I'm sorry, I need more help. The only "Sundry" I can find is a file named X-GNOME-Sundry.directory but it doesn't contain a directory name.
– Christine
Apr 23 '14 at 15:58
I'm sorry, I need more help. The only "Sundry" I can find is a file named X-GNOME-Sundry.directory but it doesn't contain a directory name.
– Christine
Apr 23 '14 at 15:58
I'm sorry, I need more help. The only "Sundry" I can find is a file named X-GNOME-Sundry.directory but it doesn't contain a directory name.
– Christine
Apr 23 '14 at 15:58
add a comment |
When you start the dconf editor, select the down pointing triangles in this order: org, desktop, input-sources all within the left pane. Each of these expands a menu where you can select the next option. After you pick input-sources, you will see the xkboptions in the right panel, select that and you can enter your choice as outlined above.
add a comment |
When you start the dconf editor, select the down pointing triangles in this order: org, desktop, input-sources all within the left pane. Each of these expands a menu where you can select the next option. After you pick input-sources, you will see the xkboptions in the right panel, select that and you can enter your choice as outlined above.
add a comment |
When you start the dconf editor, select the down pointing triangles in this order: org, desktop, input-sources all within the left pane. Each of these expands a menu where you can select the next option. After you pick input-sources, you will see the xkboptions in the right panel, select that and you can enter your choice as outlined above.
When you start the dconf editor, select the down pointing triangles in this order: org, desktop, input-sources all within the left pane. Each of these expands a menu where you can select the next option. After you pick input-sources, you will see the xkboptions in the right panel, select that and you can enter your choice as outlined above.
answered Jun 2 '14 at 21:11
Terry Leonhardt
1
1
add a comment |
add a comment |
Just click on the "disabled" and choose any of the available keys in the appeared drop-down list. Than you can hit the key and type key combinations. For example
<Key> o / gives ø symbol.
<Key> . . gives … symbol
<Key> a ' gives à
and so one
add a comment |
Just click on the "disabled" and choose any of the available keys in the appeared drop-down list. Than you can hit the key and type key combinations. For example
<Key> o / gives ø symbol.
<Key> . . gives … symbol
<Key> a ' gives à
and so one
add a comment |
Just click on the "disabled" and choose any of the available keys in the appeared drop-down list. Than you can hit the key and type key combinations. For example
<Key> o / gives ø symbol.
<Key> . . gives … symbol
<Key> a ' gives à
and so one
Just click on the "disabled" and choose any of the available keys in the appeared drop-down list. Than you can hit the key and type key combinations. For example
<Key> o / gives ø symbol.
<Key> . . gives … symbol
<Key> a ' gives à
and so one
answered Nov 16 '14 at 22:59
user2304656
62
62
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f452705%2fhow-to-configure-compose-key-in-ubuntu-14-04%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