Commits
- Commit:
fd1c80ce62030c6e75bb05db1aee43425d70fc97
- From:
- Omar Polo <op@omarpolo.com>
- Date:
constify the parser structs
- Commit:
c1d27b0e114e6a65f7979971940df212f00bb2ae
- From:
- Omar Polo <op@omarpolo.com>
- Date:
untangle a bit buffers and parsers
Now buffers have a nicer interface, taking explicitly the buffer
where they push stuff, and the code that deals with buffers doesn't
need to peek into the parsers. The parsers now are 'pure' structs
without state attached to them, the state was moved to the buffer.
- Commit:
d89eb764fd5d3a5ec0b5b30d85ecdc14789bb7cf
- From:
- Omar Polo <op@omarpolo.com>
- Date:
replace has_prefix with strncmp
- Commit:
0d877486d2b85f6e333e50765e1f2cf8119da67c
- From:
- Omar Polo <op@omarpolo.com>
- Date:
const-ify some tables
- Commit:
b96fa8fe23277bee0c42d55dae506449d83909bc
- From:
- Omar Polo <op@omarpolo.com>
- Date:
use parser_init instead of directly calling the parser init fn
- Commit:
9d65b1d9ae3209a8a2bc8e8c376dede4f71290ce
- From:
- Omar Polo <op@omarpolo.com>
- Date:
move util.c declarations in utils.h
it's not spelled `util.h' because otherwise it'd get included instead
of /usr/include/util.h
- Commit:
95a8c791ec85e7b79a1975e82a22f7c07dbb9107
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fmt (some missing space -> tab conversion)
- Commit:
e63a0ab3ac22a615abe6e3c366f198331c08509c
- From:
- Omar Polo <op@omarpolo.com>
- Date:
typo
* mime.c (ptable): colorize text/x-patch
- Commit:
cceed45f11078ff79c8c90ec830a2c3e4fe2a838
- From:
- Omar Polo <op@omarpolo.com>
- Date:
handle text/x-diff and application/x-patch too as diffs
- Commit:
ba49fdf91d954e8173e65ade03d58ea09accd8ce
- From:
- Omar Polo <op@omarpolo.com>
- Date:
colorize text/x-patch
- Commit:
786e6deb98e5c4050020215a479330250ed9736e
- From:
- Omar Polo <op@omarpolo.com>
- Date:
always include compat.h first
- Commit:
395b9f4e3ca29a4a162e3ce47a1bd9db738ff5a1
- From:
- Omar Polo <op@omarpolo.com>
- Date:
move parser declarations so parser.h
- Commit:
46f6e97405d8f8693a6b1b1213974f96f3da3bab
- From:
- Omar Polo <op@omarpolo.com>
- Date:
rename: s/window/buffer (but not always)
this aims to solve (albeit only partially) the confusion between
telescope' ``struct window'' and ncurses WINDOW. It also brings some
more emacs-like nomenclature, which may be a good thing.
- Commit:
2ba66cea888e1513fbf169b49e7d75848f4f1ec4
- From:
- Omar Polo <op@omarpolo.com>
- Date:
big refactor: introduce the window abstraction
- commands now take a struct window* instead of a raw tab
- the struct ui_state is gone
- using a window for the minibuffer too helps avoid code duplication
- it will let us having more than one window on a tab! :DD
It doesn't seem to have broken anything...
- Commit:
c49d61bc3806c1bb3056fb05deb5080c5a32ee9d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
add generic text/* support
- Commit:
748b15facbb42406a4fe72cfa4de2e72f005492e
- From:
- Omar Polo <op@omarpolo.com>
- Date:
add mime.c