~grayhatter

http://gr.ht

Recent activity

[PATCH] Change the dark theme color from blue/white to orange/warm 1 year, 2 months ago

From Gregory Mullen to ~sircmpwn/writefreesoftware.org

A friend and I were talking about writefreesoftware.org and we both agreed the
site felt striking or required effort to read. The hard contrast of the dark
theme feels very strong and bold. Which IMO isn't the best feel for the goal of
attempting to welcome new coders and convince them to "join" free software.
Softening the bright white text to a pastel, and the default theme from a cold 
blue to a warm orange makes it not only easier to read, but gives it a much more
welcoming feel. I linked some sample images below, but haven't changed the color
on the SVG because I didn't know how, wasn't convinced they *should* be change
and was afraid to invest the time if no one else agreed in softening the colors.

https://gr.ht/i/wfs-0.png
https://gr.ht/i/wfs-1.png
https://gr.ht/i/wfs-2.png
[message trimmed]

[PATCH v2] Add IMAP folder tab completion 5 years ago

From Gregory Mullen to ~sircmpwn/aerc

Credit for this fix goes to Reto; I guess if we're not gonna be mutt
we should probabaly do things correctly.

---
 commands/account/cf.go |  3 ++-
 commands/commands.go   | 23 +++++++++++++++++++++++
 commands/msg/move.go   |  3 ++-
 widgets/dirlist.go     |  6 +++++-
 4 files changed, 32 insertions(+), 3 deletions(-)

diff --git a/commands/account/cf.go b/commands/account/cf.go
index 197e956..6c928ea 100644
--- a/commands/account/cf.go
+++ b/commands/account/cf.go
[message trimmed]

[PATCH] Add IMAP folder tab completion 5 years ago

From Gregory Mullen to ~sircmpwn/aerc

Not included is support for :mkdir. It's meanless to add it at this point
because partal completion isn't implemented yet.

---
 commands/account/cf.go |  3 ++-
 commands/commands.go   | 19 +++++++++++++++++++
 commands/msg/move.go   |  3 ++-
 widgets/dirlist.go     |  6 +++++-
 4 files changed, 28 insertions(+), 3 deletions(-)

diff --git a/commands/account/cf.go b/commands/account/cf.go
index 197e956..6c928ea 100644
--- a/commands/account/cf.go
+++ b/commands/account/cf.go
[message trimmed]

[PATCH v9 1/2] Implement basic tab completion support 5 years ago

From Gregory Mullen to ~sircmpwn/aerc

Tab completion currently only works on commands. Contextual completion
will be added in the future.
---
 aerc.go                            | 63 ++++++++++++++++--------
 commands/account/account.go        |  4 +-
 commands/account/cf.go             | 14 +++++-
 commands/account/compose.go        | 14 +++++-
 commands/account/mkdir.go          | 14 +++++-
 commands/account/next-folder.go    | 19 ++++++--
 commands/account/next-result.go    | 20 ++++++--
 commands/account/next.go           | 21 +++++---
 commands/account/pipe.go           | 14 +++++-
 commands/account/search.go         | 15 ++++--
 commands/account/select.go         | 15 ++++--
[message trimmed]

[PATCH v9 2/2] Add new lib/dirstore to source completions from 5 years ago

From Gregory Mullen to ~sircmpwn/aerc

---
 lib/dirstore.go    | 20 ++++++++++++++++++++
 widgets/dirlist.go | 11 +++++++----
 2 files changed, 27 insertions(+), 4 deletions(-)
 create mode 100644 lib/dirstore.go

diff --git a/lib/dirstore.go b/lib/dirstore.go
new file mode 100644
index 0000000..e7ebb77
--- /dev/null
+++ b/lib/dirstore.go
@@ -0,0 +1,20 @@
package lib

[message trimmed]

[PATCH v8 1/2] Implement basic tab completion support 5 years ago

From Gregory Mullen to ~sircmpwn/aerc

The move command is the only one currently implemented
---
 aerc.go                            | 63 ++++++++++++++++--------
 commands/account/account.go        |  4 +-
 commands/account/cf.go             | 14 +++++-
 commands/account/compose.go        | 14 +++++-
 commands/account/mkdir.go          | 14 +++++-
 commands/account/next-folder.go    | 19 ++++++--
 commands/account/next.go           | 21 +++++---
 commands/account/pipe.go           | 14 +++++-
 commands/account/select.go         | 15 ++++--
 commands/account/view.go           | 15 ++++--
 commands/cd.go                     | 14 +++++-
 commands/commands.go               | 78 ++++++++++++++++++++++++++----
[message trimmed]

[PATCH v8 2/2] Add new lib/dirstore to source completions from 5 years ago

From Gregory Mullen to ~sircmpwn/aerc

---
 lib/dirstore.go    | 20 ++++++++++++++++++++
 widgets/dirlist.go | 11 +++++++----
 2 files changed, 27 insertions(+), 4 deletions(-)
 create mode 100644 lib/dirstore.go

diff --git a/lib/dirstore.go b/lib/dirstore.go
new file mode 100644
index 0000000..e7ebb77
--- /dev/null
+++ b/lib/dirstore.go
@@ -0,0 +1,20 @@
package lib

[message trimmed]

[PATCH v7 1/2] Implement basic tab completion support 5 years ago

From Gregory Mullen to ~sircmpwn/aerc

The move command is the only one currently implemented
---
 aerc.go                            | 47 +++++++++++-------
 commands/account/account.go        |  4 +-
 commands/account/cf.go             | 14 +++++-
 commands/account/compose.go        | 15 ++++--
 commands/account/mkdir.go          | 14 +++++-
 commands/account/next-folder.go    | 19 +++++--
 commands/account/next.go           | 21 +++++---
 commands/account/pipe.go           | 14 +++++-
 commands/account/select.go         | 15 ++++--
 commands/account/view.go           | 15 ++++--
 commands/cd.go                     | 14 +++++-
 commands/commands.go               | 79 ++++++++++++++++++++++++++----
[message trimmed]

[PATCH v7 2/2] Add m as a default keybind 5 years ago

From Gregory Mullen to ~sircmpwn/aerc

---
 config/binds.conf | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/config/binds.conf b/config/binds.conf
index c202386..7818b86 100644
--- a/config/binds.conf
+++ b/config/binds.conf
@@ -37,6 +37,8 @@ rq = :reply -aq<Enter>
Rr = :reply<Enter>
Rq = :reply -q<Enter>

m = :move<space>

[message trimmed]

[PATCH v6] Implement basic tab completion support 5 years ago

From Gregory Mullen to ~sircmpwn/aerc

The move command is the only one currently implemented
---
 aerc.go                            | 47 +++++++++++-------
 commands/account/account.go        |  4 +-
 commands/account/cf.go             | 14 +++++-
 commands/account/compose.go        | 15 ++++--
 commands/account/mkdir.go          | 14 +++++-
 commands/account/next-folder.go    | 19 +++++--
 commands/account/next.go           | 21 +++++---
 commands/account/pipe.go           | 14 +++++-
 commands/account/select.go         | 15 ++++--
 commands/account/view.go           | 15 ++++--
 commands/cd.go                     | 14 +++++-
 commands/commands.go               | 79 ++++++++++++++++++++++++++----
[message trimmed]