summaryrefslogtreecommitdiffstats
path: root/src/cmd/acme/look.c
Commit message (Collapse)AuthorAgeFilesLines
* acme: remove debug printRuss Cox2024-06-151-1/+0
|
* acme: shift button 3 for reverse searchRuss Cox2024-06-151-56/+129
| | | | | An experiment. Let's see if it's any good. Also document the Mac conventions in devdraw(3).
* acme: allow @ in file namesRuss Cox2020-12-301-1/+1
| | | | For upspin and other tools that put email addresses in names.
* acme: fix buffer overflow introduced in parsetag refactorRuss Cox2020-01-131-1/+1
|
* acme: allow spaces in window namesRuss Cox2020-01-131-1/+1
| | | | | | | | | | | | | | | | | | There are many things we could do to make this work. an environment variable to control the character. Another option would be to use U+00A0 (non-breaking space), which renders the same as space. This change avoids changing the separator character and instead assumes that if the left side of the tag already ends in " Del Snarf |" then what comes before that is the file name. Acme already aggressively preserves the "Del Snarf |", so this should work decently well as a stop-gap. We can always try something else later. Fixes #26. Fixes #104. Fixes #329.
* acme: factor out tag parsing codeRuss Cox2020-01-131-10/+8
|
* acme: accept expanded URLs in lookRuss Cox2019-06-101-9/+39
| | | | | | | Just as look expands a click in /etc/passwd to the full name (provided that file exists), it now expands a click in https://9fans.net/ to the full URL (provided the prefix is http:// or https://). Probably more adjustment is needed.
* acme: check file content before declaring file "modified since last read"Russ Cox2017-10-101-0/+1
| | | | | | | | | | | | | Bad remote file systems can change mtime unexpectedly, and then there is the problem that git rebase and similar operations like to change the files and then change them back, modifying the mtimes but not the content. Avoid spurious Put errors on both of those by checking file content. (False positive "modified since last read" make the real ones difficult to notice.)
* acme: add log file in acme root directoryRuss Cox2014-04-301-2/+8
| | | | | | | | | | | | | | | | | | | Reading /mnt/acme/log reports a log of window create, put, and delete events, as they happen. It blocks until the next event is available. Example log output: 8 new /Users/rsc/foo.go 8 put /Users/rsc/foo.go 8 del /Users/rsc/foo.go This lets acme-aware programs react to file writes, for example compiling code, running a test, or updating an import block. TBR=r R=r https://codereview.appspot.com/89560044
* acme: claim input focus earlierDavid Jeannot2012-01-161-2/+2
| | | | | | R=rsc CC=plan9port.codebot http://codereview.appspot.com/5505091
* acme: allow :?regexp for backward searchRuss Cox2011-07-101-0/+4
| | | | | | | Fixes issue 80. R=rsc http://codereview.appspot.com/4662088
* acme: correct modified message after initial load; more detail inRuss Cox2009-09-251-1/+2
| | | | | | message http://codereview.appspot.com/123051
* acme: sync against Plan 9, remove -$ optionRuss Cox2008-03-071-29/+14
|
* acme: add -m option and avoid looking in the mirrorRuss Cox2008-04-171-1/+1
|
* mergeRuss Cox2007-11-271-2/+2
|
* various memory errors in acmersc2007-02-111-6/+4
|
* reopen plumber, build mailrsc2006-06-251-14/+42
|
* No more unrooted paths.rsc2006-06-161-1/+23
|
* Better window size management.rsc2005-12-161-5/+9
|
* applersc2005-07-131-0/+2
|
* various needed castsrsc2005-07-131-3/+3
|
* fix q1 computation bug in expandfile(). only affects external programsrsc2005-03-211-2/+1
|
* Add dollarsign support.rsc2005-03-141-8/+20
|
* don't need to rename Fidrsc2005-01-041-5/+3
|
* change to use new thread libraryrsc2004-12-271-0/+1
|
* change md argument to number etc. (which acted only as a flag)rsc2004-10-221-2/+2
| | | | | | | | | | to an actual flag. buffer underrun check in number add xdata file for exactly the addressed region save addr across opens
* undo the madness.rsc2004-04-211-29/+8
|
* $foo in tags - here only for reference.rsc2004-04-211-8/+29
|
* SunOS can rot in hell.rsc2004-03-261-2/+2
|
* Today's changes.rsc2004-03-251-6/+6
| | | | More changes.
* Small tweaksrsc2004-03-211-2/+37
| | | | Lots of new code imported.
* Little tweaks and documentation.rsc2004-03-021-0/+2
|
* Fighting the good fight.rsc2004-02-291-52/+24
| | | | | | | | | | | | Move libfmt, libutf into subdirectories of lib9. Add poll-based socket i/o to libthread, so that we can avoid using multiple procs when possible, thus removing dependence on crappy pthreads implementations. Convert samterm, acme to the single-proc libthread. Bring libcomplete, acme up-to-date w.r.t. Plan 9 distribution.
* More files related to user-level file servers.rsc2003-12-111-0/+772
Also add acme!