Commits
- Commit:
7a7f8f400c9b3846ce2acf12abc6c3f800747e65
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fix display of certificate selection prompt
- Commit:
6d24bfb3ca185665e8a7fa4e5f88434690f4272d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
use a byte offset to track the point in the line
Instead of using a code-point offset, use a raw byte offset and
navigate backward and forward by means of graphemes. This gives a
correct "visual" backward/forward navigation through characters.
- Commit:
0548291a79ee63a4ee88dab9574c1def724c3a01
- From:
- Omar Polo <op@omarpolo.com>
- Date:
move exec routines to their own file
This leaves the room open to further improvements and tries to keep it
apart from the UI itself.
- Commit:
2f0ffab47b34449e9e24a05e408e9d6983b24ba8
- From:
- Omar Polo <op@omarpolo.com>
- Date:
prompt before opening the downloads
- Commit:
057e7eb6f1bc703a5d90e6ca41a5506008b850e9
- From:
- Omar Polo <op@omarpolo.com>
- Date:
make yornp data be a void pointer instead of a tab
- Commit:
7b7a69f2aeeffb5436fd490f2020335b5bf9a121
- From:
- Thomas Adam <thomas.adam22@gmail.com>
- Date:
update telescope to make use of mailcap
Change telescope to make use of mailcap entries.
Commands are no longer prompted for how to handle an unknown mime-type.
Commands are now executed via execvp(), and the mailcap handling assumes
this as part of its interface.
- Commit:
e1bf3d6e8c8b52e910473d62f747176f22e206b1
- From:
- Omar Polo <op@omarpolo.com>
- Date:
add mini-edit-external
it's bound by default to C-x in the minibuffer keymap. It'll open
an external editor to edit the content of the minibuffer. When the
editor exits, we'll call the completion function with the content
of the file.
Stuff inputted with an external editor are not persisted to the
history thought. That would require the UI to handle multiline
strings which is currently impossible.
- Commit:
0fceedb5fedbf154222ba2e675ee20bd5651008f
- From:
- Omar Polo <op@omarpolo.com>
- Date:
minibuffer: pass the string to the donefn()
This avoids the callback to have to use the (private)
minibuffer_compl_text() to get the string. It'll simplifies a
follow-up changes, too.
- Commit:
4e32d3a6c187dd9646ba4aa80a69082adf3b3c46
- From:
- Thomas Adam <thomas.adam22@gmail.com>
- Date:
ui: add capability to run external cmds
When telescope encounters a file type which it cannot display it prompts
the user whether they wish to save the file, or not.
This patch extends this idea -- if the file is saved, then the user is
prompted to run a command against that downloaded file.
This controllable via the 'external-cmd' setting. It defaults to
'xdg-open'.
This is based off work originally started by op@.
- Commit:
f7db6d139bba0fb56f0560533b77af219958ecc0
- From:
- Omar Polo <op@omarpolo.com>
- Date:
some headers cleanup
try to not include headers from headers, and remove some redundant
include.
This helps in modularizing the codebase and also helps during
incremental compilations.
- Commit:
d08fccd2fe31fb4f2415704ca8e867dc4d2e7480
- From:
- Omar Polo <op@omarpolo.com>
- Date:
removed -C/--colours flag
- Commit:
6ab857d5a87585ace35a923121550f178f74a46d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
move includes back to the root directory
Splitting stuff into sub-directories was just a big mistake.