summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix texinfo warning0.1.0Gravatar Tom Willemsen2013-04-031-1/+1
|
* Add notes about conkeror in tenxinfoGravatar Tom Willemsen2013-04-031-2/+64
| | | | Explains what it does and how to use it.
* Add sql macroGravatar Tom Willemsen2013-03-301-26/+46
| | | | | This gives SQL queries a little more Lisp-y feel and allows for better formatting of the code written.
* Update documentationGravatar Tom Willemsen2013-03-281-2/+50
| | | | Add a node about customizing CLark through its init file.
* Change order of script outputGravatar Tom Willemsen2013-03-282-4/+4
| | | | | The order of parameters for `--script' and without it was different, to keep things simple these should be the same.
* Clarify defcommandGravatar Tom Willemsen2013-03-281-43/+35
| | | | | | Writing a command like with a normal labmda-list to indicate parameters is much clearer than using an `args' parameter that semmingly comes out of nowhere.
* Make simple commands check stderrGravatar Tom Willemsen2013-03-271-7/+36
| | | | | Don't assume all operations will complete successfully, check the error output to see if something happened.
* Bump version in system, 0.0.1 is very low...Gravatar Tom Willemsen2013-03-271-1/+1
|
* Print to *error-output* when an error occursGravatar Tom Willemsen2013-03-271-7/+9
|
* Load an init file at startupGravatar Tom Willemsen2013-03-241-0/+14
| | | | | With this init file one can change certain defaults, and define their own commands.
* Add bookmarked mode-line widgetGravatar Tom Willemsen2013-03-241-14/+51
| | | | | | | | | | | This widget shows whether or not the current buffer has been bookmarked using `clark_bookmarked_string' and `clark_not_bookmarked_string'. This widget can be enabled by using, for example: add_hook("mode_line_hook", mode_line_adder(clark_bookmarked_widget), true);
* Add clark-set-tags commandGravatar Tom Willemsen2013-03-241-0/+19
| | | | Replaces the previously added tags.
* Add clark-remove commandGravatar Tom Willemsen2013-03-241-0/+13
| | | | Removes the current url from the database.
* Add clark-edit commandGravatar Tom Willemsen2013-03-241-3/+34
|
* Fix commentaryGravatar Tom Willemsen2013-03-241-2/+1
|
* Add keybindings for existing commandsGravatar Tom Willemsen2013-03-241-0/+3
| | | | | Add keybindings for `clark-add-link', `clark-find-url' and `clark-find-url-new-buffer'.
* Add clark-exists-pGravatar Tom Willemsen2013-03-241-0/+25
| | | | Prints `yes' when the url is found in the database, `no' otherwise.
* Add keymap for conkerorGravatar Tom Willemsen2013-03-241-0/+2
| | | | | | | One could bind this keymap in their `.conkerorrc' to easily access all the functions provided by CLark's conkeror module. For example: define_key(content_buffer_normal_keymap, "b", clark_keymap);
* The command syntax has changedGravatar Tom Willemsen2013-03-241-1/+1
| | | | | | | This is not markam. Markam would try to figure out that you wanted to add a url to the database by looking for either `http://' or `https://' at the start of the first argument, but CLark uses the `add' command so there should be no confusion.
* Update README.orgGravatar Tom Willemsen2013-03-231-4/+17
|
* Update texi documentation to include new commandsGravatar Tom Willemsen2013-03-231-34/+90
|
* Update the help messages to include the optionGravatar Tom Willemsen2013-03-231-1/+5
| | | | The `--script' option was not yet documented in the help message.
* Simplify usage of call-commandGravatar Tom Willemsen2013-03-231-5/+5
|
* Add remove commandGravatar Tom Willemsen2013-03-231-0/+9
| | | | Removes a bookmark from the database.
* Add set-tags commandGravatar Tom Willemsen2013-03-231-7/+30
| | | | | The set-tags command clears any tags for the bookmark, and then adds the ones given.
* Add edit commandGravatar Tom Willemsen2013-03-231-0/+22
| | | | Allows one to edit the name and description of a bookmark.
* Check argument numbers for each commandGravatar Tom Willemsen2013-03-231-12/+23
| | | | | This should keep error conditions from being signalled when someone enters the wrong number of arguments.
* Add --script optionGravatar Tom Willemsen2013-03-231-26/+33
| | | | | When passing in the --script option all output will be formatted in a machine-readable way.
* Simplify get-bookmarksGravatar Tom Willemsen2013-03-231-8/+2
|
* Fix typoGravatar Tom Willemsen2013-03-231-1/+1
|
* Simplify the exists commandGravatar Tom Willemsen2013-03-231-8/+3
|
* Hide command detailGravatar Tom Willemsen2013-03-231-2/+6
| | | | | Hide the fact that a command is just of the form NAME-command by abstracting it away into a macro.
* Improve help messagesGravatar Tom Willemsen2013-03-231-16/+45
| | | | The `help' command can now be used to view help about other commands.
* Add exists commandGravatar Tom Willemsen2013-03-231-4/+15
| | | | This command shows whether or not the given url is known to CLark.
* Place the database in XDG_DATA_HOME if possibleGravatar Tom Willemsen2013-03-231-2/+16
|
* Add some Makefile targetsGravatar Tom Willemsen2013-03-232-4/+69
|
* Add some docsGravatar Tom Willemsen2013-03-234-0/+721
|
* Add GPLv3 license infoGravatar Tom Willemsen2013-03-2310-3/+805
|
* Add conkeror moduleGravatar Tom Willemsen2013-03-232-0/+168
|
* Move lisp sources to lisp/Gravatar Tom Willemsen2013-03-236-2/+5
|
* Add macro defcommandGravatar Tom Willemsen2013-03-221-39/+50
| | | | | The defcommand macro defines a new command-line command. It also sets up some variables for the help function.
* Add READMEGravatar Tom Willemsen2013-03-221-0/+46
|
* Add search commandGravatar Tom Willemsen2013-03-221-1/+20
|
* Declare ignored variablesGravatar Tom Willemsen2013-03-211-0/+3
| | | | Keeps style-warning conditions from being raised.
* Disable debugger for executableGravatar Tom Willemsen2013-03-211-1/+1
|
* Separate help texts from help commandGravatar Tom Willemsen2013-03-211-4/+13
|
* Switch date and nameGravatar Tom Willemsen2013-03-211-1/+1
| | | | Oops, these were being passed-in in the wrong order.
* Update usage infoGravatar Tom Willemsen2013-03-211-1/+2
|
* Add add-commandGravatar Tom Willemsen2013-03-211-1/+36
| | | | | This command adds a new bookmark to the database and associates any given tags with the bookmark, adding them, if necessary, as well.
* Extract parse-args from clarkGravatar Tom Willemsen2013-03-211-2/+12
| | | | Keep functions nice and small.