~sen

Recent activity

[PATCH vaxis] widgets(textinput): support Ctrl-W to delete backwards a word 28 days ago

From sentriz to ~rockorager/vaxis

---
 widgets/textinput/textinput.go | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/widgets/textinput/textinput.go b/widgets/textinput/textinput.go
index 8c29d28..7c3cfa7 100644
--- a/widgets/textinput/textinput.go
+++ b/widgets/textinput/textinput.go
@@ -168,6 +168,32 @@ func (m *Model) Update(msg vaxis.Event) {
				m.content = append(m.content[:m.cursor-1], m.content[m.cursor:]...)
			}
			m.cursor -= 1
		case "Ctrl+w":
			if m.cursor == 0 {
[message trimmed]

[PATCH geo] button which doesn't do anything! 1 year, 4 months ago

From sentriz to ~amk/public-inbox

---
 geoserv/web/index.html | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/geoserv/web/index.html b/geoserv/web/index.html
index 259fcd3..a94ea6a 100644
--- a/geoserv/web/index.html
+++ b/geoserv/web/index.html
@@ -1,9 +1,14 @@
<!DOCTYPE html>
<head>
  <script src='https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.js'></script>
  <link href='https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.css' rel='stylesheet' />
  <script src="https://unpkg.com/maplibre-gl@latest/dist/maplibre-gl.js"></script>
[message trimmed]

[PATCH] Store and recall last 5 messages per buffer with arrow keys 3 years ago

From sentriz to ~emersion/public-inbox

Hi! This patch let's you use the arrow keys up/down to recall the last
5 messages sent on a per-buffer basis. The lines are kept in a new localStorage
key. (I can also reuse one of the existing localStorage keys if you like)

A side-effect of this change (and actually lead to simpler implementation)
is that unsent message drafts are stored as well. Eg. you can start typing
a message a message to a user, then switch to a different buffer or even
reload gamja, then go back to the buffer and sent the message.

(this required that a `key` prop is passed to <Composer /> so that we get a
unique render per buffer, giving it a chance to fetch from localStorage again)

Thanks!
---
[message trimmed]

[PATCH] Hello 3 years ago

From sentriz to ~sircmpwn/email-test-drive

some extra
some extra
some extra
---
 billy-bob | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 billy-bob

diff --git a/billy-bob b/billy-bob
new file mode 100644
index 0000000..6d0ecfd
--- /dev/null
@@ -0,0 +1 @@
[message trimmed]

[PATCH] Add Dockerfile 4 years ago

From sentriz to ~migadu/alps-devel

example docker-compose:

```yml
alps:
  build: alps
  expose:
  - 80
  restart: unless-stopped
  command:
    - -theme
    - alps
    - imaps://imap.fastmail.com:993
    - smtps://smtp.fastmail.com:465
```
[message trimmed]