Changeset 56 in code
- Timestamp:
- Jan 31, 2024, 3:56:35 PM (15 months ago)
- Location:
- trunk
- Files:
-
- 20 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r55 r56 10 10 all: 11 11 dune build 12 13 12 deps: 14 13 opam install dune ocurl cmdliner=1.0.4 msgpck 15 16 14 cli: 17 15 dune build cli/txt.exe 18 19 16 clean: 20 17 dune clean 21 22 18 dist: 23 19 dune build … … 26 22 tar czvf "logarion-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt 27 23 rm txt.exe 28 docs:29 ${MAKE} -C txt30 24 install: 31 25 dune install --prefix ${PREFIX} 32 26 uninstall: 33 27 dune uninstall --prefix ${PREFIX} 34 35 36 28 .PHONY: cli -
trunk/cli/edit.ml
r25 r56 13 13 Term.(const (Logarion.Archive.apply_sys_util "EDITOR" "nano") $ recurse $ time $ reverse $ number $ authed $ topics $ id), 14 14 Term.info "edit" ~doc: "edit a text" ~man:[ `S "DESCRIPTION"; 15 `P "Launches $EDITOR with text path as parameter. If -R is used, the ID search space16 15 `P "Launches EDITOR (nano if environment variable is unset) with text path as parameter. 16 If -R is used, the ID search space includes texts found in subdirectories too" ]
Note:
See TracChangeset
for help on using the changeset viewer.