108 lines
9.9 KiB
Plaintext
108 lines
9.9 KiB
Plaintext
<!DOCTYPE html>
|
||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="generator" content="pandoc" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||
<title>Nyxt release 1.3.3</title>
|
||
<style type="text/css">
|
||
code{white-space: pre-wrap;}
|
||
span.smallcaps{font-variant: small-caps;}
|
||
span.underline{text-decoration: underline;}
|
||
div.column{display: inline-block; vertical-align: top; width: 50%;}
|
||
</style>
|
||
<!--[if lt IE 9]>
|
||
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
|
||
<![endif]-->
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<h1 class="title">Nyxt release 1.3.3</h1>
|
||
</header>
|
||
<p>After another short but intense development cycle, we are happy to announce the availability of <a href="http://next.atlas.engineer/">Nyxt</a> version 1.3.3!</p>
|
||
<p>This version brings outstanding and unique features (again!). It is also easier to install on GNU/Linux thanks to a Debian package. Please see all installation options on the <a href="https://next.atlas.engineer/download">download page</a>.</p>
|
||
<h1 id="new-features">New features</h1>
|
||
<h2 id="multiple-input-selection">Multiple input selection</h2>
|
||
<p>Until now, Nyxt's prompt was able to ask the user for <em>one</em> choice among a list (with fuzzy completion). Now, for commands that support it, the user can select <strong>multiple candidates</strong> and apply an action on all of them (for example, to delete many buffers at once). We can <strong>filter and narrow</strong> the selection with a text input, and we can select all the visible candidates or unselect the current ones.</p>
|
||
<p>The default bindings are:</p>
|
||
<ul>
|
||
<li><p><code>C-SPACE</code> to toggle the mark of an entry.</p></li>
|
||
<li><p><code>M-a</code> to mark all visible entries.</p></li>
|
||
<li><p><code>M-u</code> to unmark all visible entries.</p></li>
|
||
</ul>
|
||
<p>Furthermore, when the input is changed and the candidates are re-filtered, the selection is not altered, even if the marked elements are not visible. We can <strong>add-up the selections</strong>.</p>
|
||
<p>For example, if we have several Wikipedia and Stack Overflow pages open, and we want to close them, we can do the following:</p>
|
||
<ul>
|
||
<li><p>Press <code>C-x k</code> (Emacs bindings) or <code>d</code> (vim bindings) or call <code>M-x delete-buffer</code>.</p></li>
|
||
<li><p>In the list of current buffers, type "wikip" and witness the list will shrink down. Type <code>M-a</code> to mark all the Wikipedia buffers.</p></li>
|
||
<li><p>Erase the input and filter with <code>stack</code>, press <code>M-a</code> again.</p></li>
|
||
<li><p>Press <code>Enter</code>.</p></li>
|
||
</ul>
|
||
<img src="/static/image/multiple-selection.gif" align="center"/>
|
||
<p>How efficient is that!?</p>
|
||
<p>Of course should you wish, you always have the possibility to write your own <code>delete-lots-of-buffers</code> command :-)</p>
|
||
<h2 id="bookmarks-tags-and-compound-queries">Bookmarks, tags and compound queries</h2>
|
||
<p>Now with Nyxt, you can <strong>tag your bookmarks</strong> and filter them with <strong>compound selectors</strong>.</p>
|
||
<p>When you bookmark a new page (<code>C-m s</code> or <code>m M</code> vi-mode or <code>M-x
|
||
bookmark-page</code>), you are asked for a list of space-separated tags.</p>
|
||
<img src="/static/image/bookmark-sea-turtle.png" align="center"/>
|
||
<p>When about to open a bookmark (<code>C-m o</code>, <code>m o</code>, <code>M-x set-url-from-bookmark</code>), you can fuzzy-filter the list and <em>also</em> filter them with tag selectors: use <code>+</code>, <code>-</code> or start a compound selector with <code>(</code> in which you can use <code>and</code>, <code>or</code> and <code>not</code>.</p>
|
||
<p>Examples:</p>
|
||
<pre class="example"><code>+lisp -blog
|
||
+blog (or lisp emacs)
|
||
+foo -bar (or (and john doe) (not (and tic tac)))
|
||
</code></pre>
|
||
<p>Additionally, the bookmarks are now <strong>saved in text format</strong>, more precisely, in s-expressions. You can easily read and edit them with another tool of your choice. In fact, we have <a href="https://github.com/tviti/next-cfg">a user who syncs them to a Github repository</a> already.</p>
|
||
<h2 id="password-manager">Password manager</h2>
|
||
<p>Nyxt 1.3.3 provides a password manager interface to <a href="https://keepassxc.org/">KeepassXC</a> or <a href="https://www.passwordstore.org/">Pass</a>.</p>
|
||
<p>See the commands <code>save-new-password</code> and <code>copy-password</code>.</p>
|
||
<p>Credits go to Solomon Bloch (<span class="citation" data-cites="noogie13">@noogie13</span>).</p>
|
||
<h2 id="session-persistence">Session persistence</h2>
|
||
<p>The user session is now automatically persisted. Close Nyxt, and find all your buffers open on subsequent starts.</p>
|
||
<p>You can also quit without saving it with <code>M-x quit-after-clearing-session</code>, or program Nyxt to adapt it to your liking. Maybe with <a href="https://next.atlas.engineer/article/hooks.org">hooks</a> this time.</p>
|
||
<h2 id="clone-git-repositories">Clone Git repositories</h2>
|
||
<p>Nyxt 1.3.3 introduces the <code>vcs-clone</code> (alias <code>git-clone</code>) command to clone Git repositories to disk. It asks for the destination and then runs asynchronously. It has a few configuration options, see the <a href="https://github.com/atlas-engineer/next/blob/master/documents/MANUAL.org">manual</a>.</p>
|
||
<p>We see this new command as a simple preview of what is possible with Nyxt, as we can interface with the host system rather easily. We are excited to work more on developer helpers in the future, and to see what you'll come up with.</p>
|
||
<h2 id="download-videos">Download videos</h2>
|
||
<p>Another utility is the new <code>download-video</code> command, which will download the video at the current URL. It is at the moment a wrapper around the <a href="http://ytdl-org.github.io/youtube-dl/">youtube-dl</a> program, which you must first install.</p>
|
||
<p>After the download, you can open your video with the <code>open-file</code> command (<code>C-x C-f</code>).</p>
|
||
<p>See the manual for more documentation and configuration options.</p>
|
||
<h2 id="reopen-closed-tabs">Reopen closed tabs</h2>
|
||
<p>The new command <code>reopen-buffer</code> (bound to <code>C-/</code>, or <code>u</code> with VI bindings) will ask for a buffer from the most recently closed ones. It supports <strong>multiple selection</strong>. And <code>reopen-last-buffer</code> will work without a prompt.</p>
|
||
<p>Credits go to <code>4t0m</code>.</p>
|
||
<h2 id="faster-and-improved-fuzzy-completion">Faster and improved fuzzy completion</h2>
|
||
<p>Our minibuffer can now match against typos and has much improved performance (no more hang after some 15 input characters…).</p>
|
||
<p>The rules are as follows:</p>
|
||
<ul>
|
||
<li><p>When any of the input strings does not match any candidate, Nyxt will try to match against possible typos.</p></li>
|
||
<li><p>When any of the input strings matches exactly</p></li>
|
||
</ul>
|
||
<p>Example in <code>execute-command</code> (<code>M-x</code>):</p>
|
||
<ul>
|
||
<li><p><code>buffer</code> would filter out all commands that don't contain the string "buffer".</p></li>
|
||
<li><p><code>swt buffer</code> would do as above, then try its best to guess which of the remaining commands matches "swt" more.</p></li>
|
||
</ul>
|
||
<h2 id="view-the-buffer-history-as-a-tree">View the buffer history (as a tree)</h2>
|
||
<p>Early versions of Nyxt have supported tree based history. However, until now, visualizing the whole history tree has been difficult.</p>
|
||
<p>Nyxt 1.3.3 introduces the command <code>buffer-history-tree</code> to view it in HTML:</p>
|
||
<img src="/static/image/history-tree.png" align="center"/>
|
||
<p>The keys <code>C-b</code> and <code>C-f</code> (<code>history-backwards</code> and <code>history-forwards</code>) are the "usual" ones. <code>M-b</code> and <code>M-f</code> (<code>history-backwards-query</code> and <code>history-forwards-query</code>) show the buffer history and ask for an url.</p>
|
||
<p>There is also <code>history-all-query</code> (<code>C-M-b</code>) that is self-explanatory and <code>history-forwards-maybe-query</code> that will "do the right thing", that is, ask for input only if there is ambiguity.</p>
|
||
<h2 id="new-command-line-argument-no-init">New command line argument: –no-init</h2>
|
||
<p>The command line argument <code>--no-init</code> or <code>-Q</code> will allow you to start Nyxt without loading your init file.</p>
|
||
<h1 id="changes-in-configuration-settings-alias-functional-configuration-system">Changes in configuration settings (alias "functional configuration system")</h1>
|
||
<p>A new style of configuration is available allowing for a "functional" style of configuration. To know more about it, check out our <a href="https://github.com/atlas-engineer/next/issues/419">discussion on GitHub</a>.</p>
|
||
<h1 id="whats-next">What's next ?</h1>
|
||
<p>We have a ton of ideas, as you certainly will the second you try Nyxt. We worked on it full time on our own resources for the last few months, however, they are limited. We might need to look for a real job. We don't see ourselves doing so much again if we can only devote a fraction of our time to it. That's why we launched the Indiegogo campaign. You are warmly invited to join in to make it a success (even with a small donation, the number of participants is also meaningful to us). Thank you!</p>
|
||
<p><a href="https://www.indiegogo.com/projects/next-browser-v1-4-0/x/13474269#/" class="uri">https://www.indiegogo.com/projects/next-browser-v1-4-0/x/13474269#/</a></p>
|
||
<p>If you'd like to become a sponsor, or if you need some help to getting started hacking in Nyxt, you can contact us at <code>hello@atlas.engineer</code>.</p>
|
||
<p>Find out more about Nyxt:</p>
|
||
<ul>
|
||
<li>The <a href="https://github.com/atlas-engineer/next/blob/master/documents/MANUAL.org">manual</a>.</li>
|
||
<li>Our <a href="https://github.com/atlas-engineer/next/wiki">wiki</a>.</li>
|
||
<li>Our <a href="https://www.reddit.com/r/next_browser/">subreddit</a>.</li>
|
||
<li>#nyxt-browser on Freenode IRC.</li>
|
||
</ul>
|
||
</body>
|
||
</html>
|