From 53ef87e5bf0d9e4e8b3c70fa06b527cefb27868f Mon Sep 17 00:00:00 2001 From: akruphi <92621645+akruphi@users.noreply.github.com> Date: Sun, 6 Oct 2024 11:06:49 +0300 Subject: [PATCH] Description of plugins API additional flags after #2412 --- HACKING.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/HACKING.md b/HACKING.md index 9a1953f6f..c3d89059a 100644 --- a/HACKING.md +++ b/HACKING.md @@ -80,3 +80,10 @@ far2l uses this to resolve symlink destination when user selects plugin's item t * `ECTL_GETTRUECOLOR` - retrieves coloring of editor like ECTL_GETCOLOR does but gets 24 RGB color using EditorTrueColor structure. Note that all true-color capable messages extend but don't replace 'base' 16 palette colors. This is done intentionally as far2l may run in terminal that doesn't support true color palette, and in such case 24bit colors will be ignored and base palette attributes will be used instead. + +### Added new flags: +* Flags to **manage markers** in **panel** from plugins API +(a la global parameters `Opt.ShowFilenameMarks` and `Opt.FilenameMarksAlign`): + - `OPIF_HL_MARKERS_NOSHOW` and `OPIF_HL_MARKERS_NOALIGN` (in `enum OPENPLUGININFO_FLAGS`); + - `PFLAGS_HL_MARKERS_NOSHOW` and `PFLAGS_HL_MARKERS_NOALIGN` (in `enum PANELINFOFLAGS`). +