How do I disable the F1 help in Libreoffce?
up vote
2
down vote
favorite
I am using Libreoffice under Linux. I do not want Libreoffice to open up my web browser every time I accidentally press F1. I see nothing about this in their F1 documentation or the man page. Does anyone know of a way to do this?
linux libreoffice
add a comment |
up vote
2
down vote
favorite
I am using Libreoffice under Linux. I do not want Libreoffice to open up my web browser every time I accidentally press F1. I see nothing about this in their F1 documentation or the man page. Does anyone know of a way to do this?
linux libreoffice
It seems to me a rather odd feature to have a "Disable F1" option in some software, because F1 is not very common to accidentally hit.
– Ian
Nov 18 '16 at 8:14
1
In libreoffice calc I use F2 constantly to edit cells. That's where I'm having this problem.
– Lombard
Nov 18 '16 at 9:52
You can install a local version of the help files - not disabling theF1
, but you not start up the browser and save bandwidth. HTH (a little)
– ngulam
Nov 26 '16 at 13:14
Sounds like a decent train of thought. Do you know if I could also change which program opens the help file? Maybe I could change it to a program that terminates immediately.
– Lombard
Nov 26 '16 at 15:09
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am using Libreoffice under Linux. I do not want Libreoffice to open up my web browser every time I accidentally press F1. I see nothing about this in their F1 documentation or the man page. Does anyone know of a way to do this?
linux libreoffice
I am using Libreoffice under Linux. I do not want Libreoffice to open up my web browser every time I accidentally press F1. I see nothing about this in their F1 documentation or the man page. Does anyone know of a way to do this?
linux libreoffice
linux libreoffice
asked Nov 17 '16 at 20:40
Lombard
111
111
It seems to me a rather odd feature to have a "Disable F1" option in some software, because F1 is not very common to accidentally hit.
– Ian
Nov 18 '16 at 8:14
1
In libreoffice calc I use F2 constantly to edit cells. That's where I'm having this problem.
– Lombard
Nov 18 '16 at 9:52
You can install a local version of the help files - not disabling theF1
, but you not start up the browser and save bandwidth. HTH (a little)
– ngulam
Nov 26 '16 at 13:14
Sounds like a decent train of thought. Do you know if I could also change which program opens the help file? Maybe I could change it to a program that terminates immediately.
– Lombard
Nov 26 '16 at 15:09
add a comment |
It seems to me a rather odd feature to have a "Disable F1" option in some software, because F1 is not very common to accidentally hit.
– Ian
Nov 18 '16 at 8:14
1
In libreoffice calc I use F2 constantly to edit cells. That's where I'm having this problem.
– Lombard
Nov 18 '16 at 9:52
You can install a local version of the help files - not disabling theF1
, but you not start up the browser and save bandwidth. HTH (a little)
– ngulam
Nov 26 '16 at 13:14
Sounds like a decent train of thought. Do you know if I could also change which program opens the help file? Maybe I could change it to a program that terminates immediately.
– Lombard
Nov 26 '16 at 15:09
It seems to me a rather odd feature to have a "Disable F1" option in some software, because F1 is not very common to accidentally hit.
– Ian
Nov 18 '16 at 8:14
It seems to me a rather odd feature to have a "Disable F1" option in some software, because F1 is not very common to accidentally hit.
– Ian
Nov 18 '16 at 8:14
1
1
In libreoffice calc I use F2 constantly to edit cells. That's where I'm having this problem.
– Lombard
Nov 18 '16 at 9:52
In libreoffice calc I use F2 constantly to edit cells. That's where I'm having this problem.
– Lombard
Nov 18 '16 at 9:52
You can install a local version of the help files - not disabling the
F1
, but you not start up the browser and save bandwidth. HTH (a little)– ngulam
Nov 26 '16 at 13:14
You can install a local version of the help files - not disabling the
F1
, but you not start up the browser and save bandwidth. HTH (a little)– ngulam
Nov 26 '16 at 13:14
Sounds like a decent train of thought. Do you know if I could also change which program opens the help file? Maybe I could change it to a program that terminates immediately.
– Lombard
Nov 26 '16 at 15:09
Sounds like a decent train of thought. Do you know if I could also change which program opens the help file? Maybe I could change it to a program that terminates immediately.
– Lombard
Nov 26 '16 at 15:09
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
On Linux systems it is generally possible to reassign F1
button to some non-intrusive function.
On Ubuntu 14.04 where Gnome 3 is the window manager, I've assigned F1
to raise
function ("Raise windows above other windows") by using any of the following:
either
dconf
write
from the command line:
dconf write /org/gnome/desktop/wm/keybindings/raise "['F1']"
or using
gsettings set
(also from the command line):
gsettings set org.gnome.desktop.wm.keybindings raise "['F1']"
- or using
dconf-editor
if you prefer a GUI, by navigating toorg.gnome.desktop.wm.keybindings
and settingraise
to['F1']
.
Having done this, hitting F1
by accident will not do anything because in most usage scenarios your LibreOffice would already be the topmost window.
On a different Linux distribution and/or window manager, I assume a similar solution could be implemented.
This will make any application unable to catch F1 being pressed, not only LibreOffice, right? If so, it should be explicitly stated in the answer.
– Kamil Maciorowski
Nov 19 at 20:39
This solution could be good if the window manager also has an escape sequence for "no, really, send F1 to the application"
– Lombard
Nov 20 at 0:37
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
On Linux systems it is generally possible to reassign F1
button to some non-intrusive function.
On Ubuntu 14.04 where Gnome 3 is the window manager, I've assigned F1
to raise
function ("Raise windows above other windows") by using any of the following:
either
dconf
write
from the command line:
dconf write /org/gnome/desktop/wm/keybindings/raise "['F1']"
or using
gsettings set
(also from the command line):
gsettings set org.gnome.desktop.wm.keybindings raise "['F1']"
- or using
dconf-editor
if you prefer a GUI, by navigating toorg.gnome.desktop.wm.keybindings
and settingraise
to['F1']
.
Having done this, hitting F1
by accident will not do anything because in most usage scenarios your LibreOffice would already be the topmost window.
On a different Linux distribution and/or window manager, I assume a similar solution could be implemented.
This will make any application unable to catch F1 being pressed, not only LibreOffice, right? If so, it should be explicitly stated in the answer.
– Kamil Maciorowski
Nov 19 at 20:39
This solution could be good if the window manager also has an escape sequence for "no, really, send F1 to the application"
– Lombard
Nov 20 at 0:37
add a comment |
up vote
0
down vote
On Linux systems it is generally possible to reassign F1
button to some non-intrusive function.
On Ubuntu 14.04 where Gnome 3 is the window manager, I've assigned F1
to raise
function ("Raise windows above other windows") by using any of the following:
either
dconf
write
from the command line:
dconf write /org/gnome/desktop/wm/keybindings/raise "['F1']"
or using
gsettings set
(also from the command line):
gsettings set org.gnome.desktop.wm.keybindings raise "['F1']"
- or using
dconf-editor
if you prefer a GUI, by navigating toorg.gnome.desktop.wm.keybindings
and settingraise
to['F1']
.
Having done this, hitting F1
by accident will not do anything because in most usage scenarios your LibreOffice would already be the topmost window.
On a different Linux distribution and/or window manager, I assume a similar solution could be implemented.
This will make any application unable to catch F1 being pressed, not only LibreOffice, right? If so, it should be explicitly stated in the answer.
– Kamil Maciorowski
Nov 19 at 20:39
This solution could be good if the window manager also has an escape sequence for "no, really, send F1 to the application"
– Lombard
Nov 20 at 0:37
add a comment |
up vote
0
down vote
up vote
0
down vote
On Linux systems it is generally possible to reassign F1
button to some non-intrusive function.
On Ubuntu 14.04 where Gnome 3 is the window manager, I've assigned F1
to raise
function ("Raise windows above other windows") by using any of the following:
either
dconf
write
from the command line:
dconf write /org/gnome/desktop/wm/keybindings/raise "['F1']"
or using
gsettings set
(also from the command line):
gsettings set org.gnome.desktop.wm.keybindings raise "['F1']"
- or using
dconf-editor
if you prefer a GUI, by navigating toorg.gnome.desktop.wm.keybindings
and settingraise
to['F1']
.
Having done this, hitting F1
by accident will not do anything because in most usage scenarios your LibreOffice would already be the topmost window.
On a different Linux distribution and/or window manager, I assume a similar solution could be implemented.
On Linux systems it is generally possible to reassign F1
button to some non-intrusive function.
On Ubuntu 14.04 where Gnome 3 is the window manager, I've assigned F1
to raise
function ("Raise windows above other windows") by using any of the following:
either
dconf
write
from the command line:
dconf write /org/gnome/desktop/wm/keybindings/raise "['F1']"
or using
gsettings set
(also from the command line):
gsettings set org.gnome.desktop.wm.keybindings raise "['F1']"
- or using
dconf-editor
if you prefer a GUI, by navigating toorg.gnome.desktop.wm.keybindings
and settingraise
to['F1']
.
Having done this, hitting F1
by accident will not do anything because in most usage scenarios your LibreOffice would already be the topmost window.
On a different Linux distribution and/or window manager, I assume a similar solution could be implemented.
edited Nov 19 at 20:43
Scott
15.5k113789
15.5k113789
answered Nov 19 at 20:32
Shonzilla
1012
1012
This will make any application unable to catch F1 being pressed, not only LibreOffice, right? If so, it should be explicitly stated in the answer.
– Kamil Maciorowski
Nov 19 at 20:39
This solution could be good if the window manager also has an escape sequence for "no, really, send F1 to the application"
– Lombard
Nov 20 at 0:37
add a comment |
This will make any application unable to catch F1 being pressed, not only LibreOffice, right? If so, it should be explicitly stated in the answer.
– Kamil Maciorowski
Nov 19 at 20:39
This solution could be good if the window manager also has an escape sequence for "no, really, send F1 to the application"
– Lombard
Nov 20 at 0:37
This will make any application unable to catch F1 being pressed, not only LibreOffice, right? If so, it should be explicitly stated in the answer.
– Kamil Maciorowski
Nov 19 at 20:39
This will make any application unable to catch F1 being pressed, not only LibreOffice, right? If so, it should be explicitly stated in the answer.
– Kamil Maciorowski
Nov 19 at 20:39
This solution could be good if the window manager also has an escape sequence for "no, really, send F1 to the application"
– Lombard
Nov 20 at 0:37
This solution could be good if the window manager also has an escape sequence for "no, really, send F1 to the application"
– Lombard
Nov 20 at 0:37
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1147011%2fhow-do-i-disable-the-f1-help-in-libreoffce%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
It seems to me a rather odd feature to have a "Disable F1" option in some software, because F1 is not very common to accidentally hit.
– Ian
Nov 18 '16 at 8:14
1
In libreoffice calc I use F2 constantly to edit cells. That's where I'm having this problem.
– Lombard
Nov 18 '16 at 9:52
You can install a local version of the help files - not disabling the
F1
, but you not start up the browser and save bandwidth. HTH (a little)– ngulam
Nov 26 '16 at 13:14
Sounds like a decent train of thought. Do you know if I could also change which program opens the help file? Maybe I could change it to a program that terminates immediately.
– Lombard
Nov 26 '16 at 15:09