Commit graph

2060 commits

Author SHA1 Message Date
Oliver Blanthorn
1817f71793
Fix typo, remove unsupported centering 2018-11-03 13:16:37 +00:00
Oliver Blanthorn
d3b441a13b
Add donation text and image to readme 2018-11-03 13:12:53 +00:00
Oliver Blanthorn
321b537a61
Merge pull request #1141 from glacambre/nativemessenger_tutorial
Various tutorial improvements
2018-11-03 08:31:34 +00:00
glacambre
946e8031ad
Various tutorial improvements
This commit renames tutorial pages with the number in which they are
visited by the user. This helps when you need to add a new page and want
to link to the previous/next one in it.

It also adds a new page about the native messenger which describes what
it does and how to install it. I took this opportunity to rename
installnative to nativeinstall and to add an ex alias that goes the
other way.

Last, this commit  mentions that `:help` also accepts settings and keys
as argument and that we now have a troobleshooting guide.
2018-11-03 08:06:30 +01:00
Oliver Blanthorn
cf651478fa
Relegate halloween to the changelog 2018-11-02 18:33:14 +00:00
Oliver Blanthorn
de9fc2d4b5
Merge pull request #1136 from antonva/fix-1031
Add element property check to fix google product search bars.
2018-11-02 11:15:27 +00:00
Anton Vilhelm Ásgeirsson
9a338c1935 Add element property check to fix google product search bars. 2018-11-02 01:02:59 +00:00
Oliver Blanthorn
2119bbea3e
Merge branch 'undo-tab-window-recent' 2018-11-01 17:27:48 +00:00
Anton Vilhelm Ásgeirsson
e0fdeeb54e Add error handling to undo excmd and remove session limit. 2018-11-01 13:32:12 +00:00
Oliver Blanthorn
f94fb9aa3d
Merge pull request #1128 from glacambre/fix_713
css_util.ts: Fix navtoolboxunfocused rule not properly hiding navtoolbox
2018-11-01 09:54:24 +00:00
glacambre
bac095c109
css_util.ts: Fix navtoolboxunfocused rule not properly hiding navtoolbox 2018-11-01 06:24:03 +01:00
Colin Caine
0a36af8592 👻👻 IMPORTANT: ANNOUNCEMENT 🎃🎃 2018-10-31 21:54:39 +00:00
glacambre
eb726c0861 Add halloween theme 2018-10-31 21:49:02 +00:00
Oliver Blanthorn
b4cab5afe0
Mention that find mode is broken 2018-10-31 14:29:29 +00:00
Oliver Blanthorn
cd968ba9e8
Remove shrugface error
It was funnier when it wasn't tormenting end users who hit bugs
2018-10-31 14:06:09 +00:00
Anton Vilhelm Ásgeirsson
7bae3e77ae Refactor undo excmd to explicitly undo tabs, windows or recent.
This addresses issue #772 and adds functionality for "basic" tab and window
undo. Supplying either tab or window to the undo excmd will explicitly restore
the most recently closed item of the specified type.

Undo now has a return value of the [tab|window]Id or -1 if no matches are made.
Currently it looks like window ids aren't being used/kept when closed so that
might be a small gotcha.

This does not address the problem of the currently default "recent" mode where
seemingly random windows are reopened when no tabs fitting the current window id
are available.

U is now bound to `undo window` to specifically reopen windows.
2018-10-30 20:06:04 +00:00
Oliver Blanthorn
454a63e779
Merge pull request #1110 from WhiteAbeLincoln/master
Add Fullscreen{Change,Enter,Left} autocommand events
2018-10-29 10:53:40 +00:00
Oliver Blanthorn
0b1e46b76c
Merge pull request #1117 from antonva/sanezoom
Add zm and zr zoom bindings.
2018-10-29 10:49:44 +00:00
Anton Vilhelm Ásgeirsson
37e0071e52 Add zm and zr zoom bindings. 2018-10-28 12:05:56 +00:00
Oliver Blanthorn
2594d1e87b
Merge branch 'make_completions_faster' 2018-10-28 10:56:36 +00:00
Oliver Blanthorn
ed659bf67c
release 1.14.1 2018-10-28 10:44:02 +00:00
Oliver Blanthorn
ecab1522c3
Update changelog for 1.14.1 2018-10-28 10:43:47 +00:00
Oliver Blanthorn
2f8b457d84
Merge pull request #1112 from glacambre/fix_setpref
excmds.ts: Fix setpref breaking user.js when value contains spaces
2018-10-27 14:03:39 +01:00
glacambre
26169efea1
excmds.ts: Fix setpref breaking user.js when value contains spaces
Before this commit, `:setpref my_pref "my value"` broke user.js by only
writing '"my' to the file. This created a syntax error and prevented
firefox from reading the rest of the file. This commit fixes that.
2018-10-27 13:20:18 +02:00
Abraham White
bcfdd1dadb Mark fullscreenhandler function as hidden from docs 2018-10-25 22:59:47 -06:00
Abraham White
2563ddd505 Rename prefixed variable to prevent future name clashes 2018-10-25 22:54:25 -06:00
Abraham White
985e20cf5c Add Fullscreen{Change,Enter,Left} autocommand events 2018-10-25 22:40:25 -06:00
Oliver Blanthorn
8644e06f21
Merge pull request #1108 from glacambre/update_faq
readme.md: Merge FAQ questions, update some of the answers
2018-10-25 11:46:50 +01:00
glacambre
b10b1169cc
readme.md: Merge FAQ questions, update some of the answers 2018-10-25 09:03:32 +02:00
Oliver Blanthorn
b01ad0e0c9
Merge pull request #1106 from glacambre/fix_918
excmds.ts: Make idFromIndex('#') default to activeTab if no prev tab
2018-10-25 08:00:41 +01:00
glacambre
f5873ea5ca
excmds.ts: Make idFromIndex('#') default to activeTab if no prev tab
This commit makes idFromIndex("#") return the id of the currently active
tab instead of undefined when only one tab is open. This makes
Tridactyl's "#" behavior closer to vim's, but not 100% the same.

This closes https://github.com/tridactyl/tridactyl/issues/918 .
2018-10-25 07:52:17 +02:00
glacambre
a6a3e4ac2f
commandline_frame.ts: Try to get rid of input lag
We try to get rid of input lag by only starting completion computation
some time after the user stopped pressing letters. This should in theory
help with https://github.com/tridactyl/tridactyl/issues/1092 and close
https://github.com/tridactyl/tridactyl/issues/454 and
https://github.com/tridactyl/tridactyl/issues/229.
2018-10-24 22:08:24 +02:00
Oliver Blanthorn
c9d7747058
Update changelog for 1.14.1 2018-10-24 19:25:56 +01:00
Oliver Blanthorn
b0f6306b71
Unbind I: fix #1096 2018-10-19 17:59:18 +01:00
Oliver Blanthorn
42384cf0a7
Add reloadallbut command 2018-10-19 12:39:48 +01:00
Oliver Blanthorn
f2f4d3205f
Merge pull request #1094 from glacambre/guiset_tab_counters
css_util.ts: Add tab counter rules
2018-10-18 21:24:33 +01:00
glacambre
2664978b00
css_util.ts: Add tab counter rules
This commit adds a way to display tab indexes on tabs themselves.
2018-10-18 21:41:12 +02:00
Oliver Blanthorn
fcdafefa6c
Merge pull request #1093 from glacambre/remove_gnome_terminal
Kill the gnome
2018-10-18 19:12:20 +01:00
glacambre
c5d5120b5c
Kill the gnome
Gnome terminal doesn't work consistently: it doesn't block but some
distros add wrappers that will make it block when given the right
arguments. See https://github.com/tridactyl/tridactyl/issues/1035.
2018-10-18 18:48:29 +02:00
Oliver Blanthorn
44f4714e31
Merge branch 'trigdactyl' 2018-10-17 21:05:31 +01:00
Oliver Blanthorn
aeb491f55e
Update scrollto documentation 2018-10-17 21:05:19 +01:00
Oliver Blanthorn
701ac4c4d0
Merge branch 'setpref' 2018-10-17 20:58:52 +01:00
Oliver Blanthorn
b81d7de650
Merge branch 'filesystem_completion' 2018-10-17 20:52:43 +01:00
glacambre
6a9cab153c
Add FileSystem completion 2018-10-16 18:07:40 +02:00
Oliver Blanthorn
e85883b4e3
Fix broken build 2018-10-15 17:34:05 +01:00
Oliver Blanthorn
740f4dde68
Fix #1087: add googlelucky searchurl 2018-10-15 17:31:12 +01:00
Oliver Blanthorn
680bd16b8f
Add clone yank to tridactylrc 2018-10-15 11:18:11 +01:00
Oliver Blanthorn
5a878b5b43
Merge pull request #1086 from shouya/master
Allow executing code in bookmarklets
2018-10-15 10:47:26 +01:00
Shou Ya
41e2462cc8
allow executing bookmarklets 2018-10-15 14:24:31 +08:00
Oliver Blanthorn
830065c4c6
Revert "Add FileSystem completion"
This partially reverts commit 698fc6a and 25af877. The completion
was  causing breaking  tabopen and  other completions  for people
with outdated native messengers.
2018-10-14 00:28:00 +01:00