Merge branch 'oed-master'
This commit is contained in:
commit
5ca58843fc
@ -128,12 +128,12 @@ Contributors, sorted by the number of commits in descending order:
|
|||||||
* Claude
|
* Claude
|
||||||
* John ShaggyTwoDope Jenkins
|
* John ShaggyTwoDope Jenkins
|
||||||
* rikn00
|
* rikn00
|
||||||
|
* Joel Torstensson
|
||||||
* Brian Jackson
|
* Brian Jackson
|
||||||
* Martin Zimmermann
|
* Martin Zimmermann
|
||||||
* Mathias Fussenegger
|
* Mathias Fussenegger
|
||||||
* Larry Hynes
|
* Larry Hynes
|
||||||
* Johannes Altmanninger
|
* Johannes Altmanninger
|
||||||
* Joel Torstensson
|
|
||||||
* Regina Hug
|
* Regina Hug
|
||||||
* Peter Vilim
|
* Peter Vilim
|
||||||
* Helen Sherwood-Taylor
|
* Helen Sherwood-Taylor
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
|<<download,download>>|Download a given URL, given as string.
|
|<<download,download>>|Download a given URL, given as string.
|
||||||
|<<download-page,download-page>>|Download the current page.
|
|<<download-page,download-page>>|Download the current page.
|
||||||
|<<forward,forward>>|Go forward in the history of the current tab.
|
|<<forward,forward>>|Go forward in the history of the current tab.
|
||||||
|
|<<fullscreen,fullscreen>>|Toggle fullscreen mode.
|
||||||
|<<help,help>>|Show help about a command or setting.
|
|<<help,help>>|Show help about a command or setting.
|
||||||
|<<hint,hint>>|Start hinting.
|
|<<hint,hint>>|Start hinting.
|
||||||
|<<home,home>>|Open main startpage in current tab.
|
|<<home,home>>|Open main startpage in current tab.
|
||||||
@ -123,6 +124,10 @@ Go forward in the history of the current tab.
|
|||||||
==== count
|
==== count
|
||||||
How many pages to go forward.
|
How many pages to go forward.
|
||||||
|
|
||||||
|
[[fullscreen]]
|
||||||
|
=== fullscreen
|
||||||
|
Toggle fullscreen mode.
|
||||||
|
|
||||||
[[help]]
|
[[help]]
|
||||||
=== help
|
=== help
|
||||||
Syntax: +:help [*--tab*] [*--bg*] [*--window*] ['topic']+
|
Syntax: +:help [*--tab*] [*--bg*] [*--window*] ['topic']+
|
||||||
|
@ -951,6 +951,7 @@ KEY_DATA = collections.OrderedDict([
|
|||||||
('forward', ['L']),
|
('forward', ['L']),
|
||||||
('forward -t', ['tl']),
|
('forward -t', ['tl']),
|
||||||
('forward -w', ['wl']),
|
('forward -w', ['wl']),
|
||||||
|
('fullscreen', ['<F11>']),
|
||||||
('hint', ['f']),
|
('hint', ['f']),
|
||||||
('hint all tab', ['F']),
|
('hint all tab', ['F']),
|
||||||
('hint all window', ['wf']),
|
('hint all window', ['wf']),
|
||||||
|
@ -305,6 +305,14 @@ class MainWindow(QWidget):
|
|||||||
"""
|
"""
|
||||||
super().close()
|
super().close()
|
||||||
|
|
||||||
|
@cmdutils.register(instance='main-window', scope='window')
|
||||||
|
def fullscreen(self):
|
||||||
|
"""Toggle fullscreen mode."""
|
||||||
|
if self.isFullScreen():
|
||||||
|
self.showNormal()
|
||||||
|
else:
|
||||||
|
self.showFullScreen()
|
||||||
|
|
||||||
def resizeEvent(self, e):
|
def resizeEvent(self, e):
|
||||||
"""Extend resizewindow's resizeEvent to adjust completion.
|
"""Extend resizewindow's resizeEvent to adjust completion.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user