Date: Tue, 14 Jul 2020 13:11:38 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542212 - in head/misc: . far2l far2l/files Message-ID: <202007141311.06EDBcMU023323@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Tue Jul 14 13:11:38 2020 New Revision: 542212 URL: https://svnweb.freebsd.org/changeset/ports/542212 Log: Add a port of FAR v2 (file and archive manager) to Unix-like systems. It's still in the early stages of development, so the ride is a bit bumpy at times, but it had reached the stage when it's usable as one's every-day file manager, so give it more exposure. WWW: https://github.com/elfmz/far2l Added: head/misc/far2l/ head/misc/far2l/Makefile (contents, props changed) head/misc/far2l/distinfo (contents, props changed) head/misc/far2l/files/ head/misc/far2l/files/patch-WinPort_src_APIFSNotify.cpp (contents, props changed) head/misc/far2l/files/patch-cmake_modules_FindLibsmbclient.cmake (contents, props changed) head/misc/far2l/pkg-descr (contents, props changed) head/misc/far2l/pkg-plist (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Tue Jul 14 13:07:54 2020 (r542211) +++ head/misc/Makefile Tue Jul 14 13:11:38 2020 (r542212) @@ -93,6 +93,7 @@ SUBDIR += exercism SUBDIR += explosions SUBDIR += ezc3d + SUBDIR += far2l SUBDIR += felis SUBDIR += figlet SUBDIR += figlet-fonts Added: head/misc/far2l/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/far2l/Makefile Tue Jul 14 13:11:38 2020 (r542212) @@ -0,0 +1,39 @@ +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= far2l +PORTVERSION= g20200622 +CATEGORIES= misc + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Port of FAR v2 to Unix-like systems + +BUILD_DEPENDS= gawk:lang/gawk gm4:devel/m4 +LIB_DEPENDS= libpcre.so:devel/pcre +RUN_DEPENDS= bash:shells/bash + +USE_GITHUB= yes +GH_ACCOUNT= elfmz +GH_TAGNAME= 43057bd + +USES= cmake compiler:c++11-lang libarchive pkgconfig shebangfix ssl +SHEBANG_FILES= far2l/bootstrap/roots.sh + +OPTIONS_DEFINE= NFS SFTP SMB WEBDAV WXGTK +OPTIONS_DEFAULT= NFS SFTP WEBDAV WXGTK +OPTIONS_SUB= yes + +NFS_LIB_DEPENDS= libnfs.so:net/libnfs + +SFTP_DESC= SFTP file transfer support +SFTP_LIB_DEPENDS= libssh.so:security/libssh + +SMB_USES= samba:lib + +WEBDAV_DESC= WebDav protocol support via libneon +WEBDAV_LIB_DEPENDS= libneon.so:www/neon + +WXGTK_CMAKE_OFF= -DUSEWX:BOOL=OFF +WXGTK_USE= WX=3.0 + +.include <bsd.port.mk> Added: head/misc/far2l/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/far2l/distinfo Tue Jul 14 13:11:38 2020 (r542212) @@ -0,0 +1,3 @@ +TIMESTAMP = 1592869154 +SHA256 (elfmz-far2l-g20200622-43057bd_GH0.tar.gz) = 676f47878d22bd26faa728d2521742f54bc9f729bc83e33d3688fca633aa8bcb +SIZE (elfmz-far2l-g20200622-43057bd_GH0.tar.gz) = 5487398 Added: head/misc/far2l/files/patch-WinPort_src_APIFSNotify.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/far2l/files/patch-WinPort_src_APIFSNotify.cpp Tue Jul 14 13:11:38 2020 (r542212) @@ -0,0 +1,10 @@ +--- WinPort/src/APIFSNotify.cpp.orig 2020-06-22 23:39:14 UTC ++++ WinPort/src/APIFSNotify.cpp +@@ -6,6 +6,7 @@ + #include <thread> + #include <condition_variable> + #if defined(__APPLE__) || defined(__FreeBSD__) ++# include <sys/types.h> + # include <sys/event.h> + # include <sys/time.h> + #elif !defined(__CYGWIN__) Added: head/misc/far2l/files/patch-cmake_modules_FindLibsmbclient.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/far2l/files/patch-cmake_modules_FindLibsmbclient.cmake Tue Jul 14 13:11:38 2020 (r542212) @@ -0,0 +1,30 @@ +--- cmake/modules/FindLibsmbclient.cmake.orig 2020-06-22 23:39:14 UTC ++++ cmake/modules/FindLibsmbclient.cmake +@@ -21,23 +21,17 @@ else (LIBSMBCLIENT_LIBRARIES AND LIBSMBCLIENT_INCLUDE_ + find_path(LIBSMBCLIENT_INCLUDE_DIR + NAMES + libsmbclient.h +- PATHS +- /usr/include +- /usr/local/include +- /opt/local/include +- /sw/include + PATH_SUFFIXES + samba-4.0 ++ samba4 + ) + + find_library(SMBCLIENT_LIBRARY + NAMES + smbclient +- PATHS +- /usr/lib +- /usr/local/lib +- /opt/local/lib +- /sw/lib ++ PATH_SUFFIXES ++ samba-4.0 ++ samba4 + ) + + if (SMBCLIENT_LIBRARY) Added: head/misc/far2l/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/far2l/pkg-descr Tue Jul 14 13:11:38 2020 (r542212) @@ -0,0 +1,8 @@ +Linux port of the FAR Manager v2 (http://farmanager.com/); also work on macOS +and *BSD systems. ALPHA VERSION. Currently interesting only for enthusiasts! + +Plugins that currently work: NetRocks (SFTP/SCP/FTP/FTPS/SMB/NFS/WebDAV), +colorer, multiarc, tmppanel, align, autowrap, drawline, editcase, SimpleIndent, +Python (optional scripting support). + +WWW: https://github.com/elfmz/far2l Added: head/misc/far2l/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/far2l/pkg-plist Tue Jul 14 13:11:38 2020 (r542212) @@ -0,0 +1,482 @@ +bin/far2l +lib/far2l/Plugins/NetRocks/plug/NetRocks-FILE.broker +lib/far2l/Plugins/NetRocks/plug/NetRocks-FTP.broker +%%NFS%%lib/far2l/Plugins/NetRocks/plug/NetRocks-NFS.broker +%%SFTP%%lib/far2l/Plugins/NetRocks/plug/NetRocks-SFTP.broker +%%SMB%%lib/far2l/Plugins/NetRocks/plug/NetRocks-SMB.broker +%%WEBDAV%%lib/far2l/Plugins/NetRocks/plug/NetRocks-WebDAV.broker +lib/far2l/Plugins/NetRocks/plug/NetRocks.far-plug-wide +lib/far2l/Plugins/SimpleIndent/plug/SimpleIndent.far-plug-wide +lib/far2l/Plugins/align/plug/align.far-plug-wide +lib/far2l/Plugins/autowrap/plug/autowrap.far-plug-wide +lib/far2l/Plugins/colorer/plug/colorer.far-plug-wide +lib/far2l/Plugins/compare/plug/compare.far-plug-wide +lib/far2l/Plugins/drawline/plug/drawline.far-plug-wide +lib/far2l/Plugins/editcase/plug/editcase.far-plug-wide +lib/far2l/Plugins/editorcomp/plug/editorcomp.far-plug-wide +lib/far2l/Plugins/filecase/plug/filecase.far-plug-wide +lib/far2l/Plugins/incsrch/plug/incsrch.far-plug-wide +lib/far2l/Plugins/inside/plug/inside.far-plug-mb +lib/far2l/Plugins/multiarc/plug/multiarc.far-plug-mb +lib/far2l/Plugins/tmppanel/plug/tmppanel.far-plug-wide +share/applications/far2l.desktop +%%DATADIR%%/FarCze.lng +%%DATADIR%%/FarEng.hlf +%%DATADIR%%/FarEng.lng +%%DATADIR%%/FarGer.lng +%%DATADIR%%/FarHun.hlf +%%DATADIR%%/FarHun.lng +%%DATADIR%%/FarPol.lng +%%DATADIR%%/FarRus.hlf +%%DATADIR%%/FarRus.lng +%%DATADIR%%/FarSpa.lng +%%DATADIR%%/Plugins/NetRocks/plug/eng.lng +%%DATADIR%%/Plugins/NetRocks/plug/helpe.hlf +%%DATADIR%%/Plugins/NetRocks/plug/rus.lng +%%DATADIR%%/Plugins/align/plug/AlignEng.lng +%%DATADIR%%/Plugins/align/plug/AlignRus.lng +%%DATADIR%%/Plugins/autowrap/plug/WrapEng.lng +%%DATADIR%%/Plugins/autowrap/plug/WrapRus.lng +%%DATADIR%%/Plugins/colorer/base/catalog.xml +%%DATADIR%%/Plugins/colorer/base/hrc/auto/empty.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/asm.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/c-win32.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/c.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/cpp-qt.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/cpp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/csharp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/d.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/d1-phobos.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/d1-tango.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/d2-phobos.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/forth.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/fortran.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/fsharp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/gen/perl-brackets.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/go.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/haxe.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/idl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/java.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/js.net.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/kotlin-jdk.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/kotlin-runtime.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/kotlin.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/lua.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/nix.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/pascal.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/perl-heredoc.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/perl-keyword-pack.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/perl-keywords.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/perl-vars.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/perl-vars.pkg.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/perl-vars.pkg.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/perl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/python.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/ruby.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/ruby.kw-class.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/ruby.kw.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/rust.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/scala.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/tcltk.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/vb.net.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/base/vbasic.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/db/clarion.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/db/clipper.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/db/foxpro.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/db/mysql.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/db/paradox.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/db/sql.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/db/sqlj.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/actionscript.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/adp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/asp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/asp.js.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/asp.ps.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/asp.vb.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/coldfusion.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/css.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/erb.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/htc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/html-entity-lat1.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/html-entity-special.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/html-entity-symbol.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/html-entity.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/php-gen.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/rss.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/svg.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/wml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/xbl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/xhtml-frameset.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/xhtml-strict.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/gen/xhtml-trans.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/haml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/html-css.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/html.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/jscript.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/jsp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/less.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/mxml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/php-script.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/php.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/sass.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/shpaml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/smarty.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/ss.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/svg-css.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/twig.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/inet/vbscript.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/lib/default.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/lib/doxygen.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/lib/far-macro-string.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/lib/far.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/lib/message.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/lib/ole.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/lib/regexp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/lib/uri.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/lib/uri.lang.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/misc/assa.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/misc/cue.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/misc/ddoc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/misc/diff.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/misc/filesbbs.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/misc/markdown.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/misc/mediawiki.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/misc/srt.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/misc/text.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/php-prot.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/proto.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare.gen.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare.ie-weidu.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare.j2ee.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare.qrm.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare.scripts.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/1c.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/a51-5.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/abap4.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/ada.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/adsp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/ahdl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/asasm.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/asm80.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/autoit.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/avr-5.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/baan.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/cache.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/cobol.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/cobolfr.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/cup.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/diet.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/dssp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/eiffel.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/erlang.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/flex.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/ibatis2-sql-map-config.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/ibatis2-sql-map-pack.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/ibatis2-sql-map.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/log4j.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/parser-brackets.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/parser-ex.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/parser.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/xsieve.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/xsieve.xsd-pack.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/gen/yml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/haskell.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/icon.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/ie-weidu/baf.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/ie-weidu/dialog.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/ie-weidu/tp2.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/ie-weidu/tp2h.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/ie-weidu/tra.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application-client_1_4.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application-client_5.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application_1_2.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application_1_3.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application_1_4.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/application_5.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/connector_1_0.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/connector_1_5.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/ejb-jar_1_1.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/ejb-jar_2_0.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/ejb-jar_2_1.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/ejb-jar_3_0.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/j2ee_jaxrpc_mapping_1_1.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/j2ee_web_services_1_0.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/j2ee_web_services_1_1.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/javaee_web_services_1_2.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/javaee_web_services_metadata_handler_2_0.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-app_2_3.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-app_2_4.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-app_2_5.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-facesconfig_1_0.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-facesconfig_1_1.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-facesconfig_1_2.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-jsptaglibrary_1_1.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-jsptaglibrary_1_2.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-jsptaglibrary_2_0.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/j2ee/web-jsptaglibrary_2_1.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/jcl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/json.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/lisp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/llvm.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/mako.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/mason.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/matlab.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/modula.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/nesc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/ocaml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/olextend.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/picasm.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/pl1.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/postscript.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/qrm/atl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/qrm/dii.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/qrm/rpt.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/rexx.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/aditor.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/adm.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/cobolsql.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/cppsql.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/csql.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/edif.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/eum.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/gpss.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/irclog.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/kixtart.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/litestep.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/lss.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/mancolor.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/mel.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/micqlog.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/ppwizard.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/pvwave.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/rib.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/rsmac.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/scn.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/sdml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/sl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/spt.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/urq.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/vim.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/scripts/vismod.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/sml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/sprolog.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/stata.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/tprolog.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/ubasic.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/verilog.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/vhdl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/yaml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/rare/z80.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts.colorer.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts.far.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts.ini.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts.msg.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/acapella/acapella.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/acapella/acapellaLink.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/apache.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/asn1.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/avisynth.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/awk.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/batch.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/bkt.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/colorer5catalog.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/ent.hrc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/hrc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/hrd.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/colorer/xsd2hrc.custom.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/config.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/dcl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/dfm.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/farhelp.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/farlng.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/farmailscript.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/farmenu.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/gen/calcset.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/gen/esc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/macro.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/macrolib.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/macroliblua.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/tgs.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/far/truemac.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/ant.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/qrc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/sh-brackets.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/wsc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/gen/wsf.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/graphviz.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/ini/bootini.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/ini/configsys.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/ini/ini.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/ini/msdossys.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/ini/reg.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/iss.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/javacc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/javapolicy.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/javaprop.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/lemon.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/lex.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/linkdef.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/m4.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/makefile.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/mkb.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/msg/email.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/msg/farmsg.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/msg/fidomsg.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/msg/pms.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/nsi.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/pnuts.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/powershell.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/qmake.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/r.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/rarscrpt.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/resrc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/rtf.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/rul.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/scons.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/sh-keywords.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/sh.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/solution.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/squirrel.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/tex.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/vrml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/scripts/yacc.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/dtd.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/dtdcatalog.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/docbook.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/mathml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/rdf.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/rdfs.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/relaxng.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/schematron.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/wsdl-soap.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/wsdl.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/xinclude.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/xlink.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/xmlcatalog.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/xmlns.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/xmlschema-instance.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/xmlschema.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/xslfo.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/xslt.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/gen/xslt2.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/xml.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/xpath-functions.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/xpath-re.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/xpath-xml.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/xpath.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/xpath.internal.hack.ent.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/xpath2.hrc +%%DATADIR%%/Plugins/colorer/base/hrc/xml/xquery.hrc +%%DATADIR%%/Plugins/colorer/base/hrd/catalog-console.xml +%%DATADIR%%/Plugins/colorer/base/hrd/catalog-rgb.xml +%%DATADIR%%/Plugins/colorer/base/hrd/catalog-text.xml +%%DATADIR%%/Plugins/colorer/base/hrd/console/black.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/blue.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/contrib/black_ay.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/contrib/black_sezal.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/contrib/classic.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/contrib/cyberpunk.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/contrib/gray_pult.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/contrib/ocean.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/contrib/take4.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/contrib/visual.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/default.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/dnlike.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/emu/mirror.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/gray.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/hack.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/mirror.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/nc.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/white.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/console/xmastree.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/css/black.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/blue.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/contrib/bred3.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/contrib/fmx.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/contrib/visual-rgb.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/eclipse.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/grayscale.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/hs.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/mirice.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/mirror.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/navy.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/neo.css +%%DATADIR%%/Plugins/colorer/base/hrd/css/white.css +%%DATADIR%%/Plugins/colorer/base/hrd/reg.addons/conemu/ansi.reg +%%DATADIR%%/Plugins/colorer/base/hrd/reg.addons/conemu/mirice.reg +%%DATADIR%%/Plugins/colorer/base/hrd/reg.addons/conemu/mirror.reg +%%DATADIR%%/Plugins/colorer/base/hrd/reg.addons/console/ansi.reg +%%DATADIR%%/Plugins/colorer/base/hrd/reg.addons/console/mirice.reg +%%DATADIR%%/Plugins/colorer/base/hrd/reg.addons/console/mirror.reg +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/black.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/blue.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/contrib/bred3.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/contrib/fmx.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/contrib/visual-rgb.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/eclipse.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/grayscale.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/hs.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/mirice.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/mirror.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/navy.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/neo.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/rgb/white.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/text/htmlcss.hrd +%%DATADIR%%/Plugins/colorer/base/hrd/text/tags.hrd +%%DATADIR%%/Plugins/colorer/plug/Plugin.Colorer.lua +%%DATADIR%%/Plugins/colorer/plug/colorere.hlf +%%DATADIR%%/Plugins/colorer/plug/colorere.lng +%%DATADIR%%/Plugins/colorer/plug/colorerr.hlf +%%DATADIR%%/Plugins/colorer/plug/colorerr.lng +%%DATADIR%%/Plugins/colorer/plug/hrcsettings.xml +%%DATADIR%%/Plugins/compare/plug/CmpEng.hlf +%%DATADIR%%/Plugins/compare/plug/CmpRus.hlf +%%DATADIR%%/Plugins/compare/plug/CompEng.lng +%%DATADIR%%/Plugins/compare/plug/CompRus.lng +%%DATADIR%%/Plugins/drawline/plug/DrawEng.hlf +%%DATADIR%%/Plugins/drawline/plug/DrawEng.lng +%%DATADIR%%/Plugins/drawline/plug/DrawRus.hlf +%%DATADIR%%/Plugins/drawline/plug/DrawRus.lng +%%DATADIR%%/Plugins/editcase/plug/ECaseEng.hlf +%%DATADIR%%/Plugins/editcase/plug/ECaseEng.lng +%%DATADIR%%/Plugins/editcase/plug/ECaseRus.hlf +%%DATADIR%%/Plugins/editcase/plug/ECaseRus.lng +%%DATADIR%%/Plugins/editorcomp/plug/editorcomp_en.lng +%%DATADIR%%/Plugins/editorcomp/plug/editorcomp_ru.lng +%%DATADIR%%/Plugins/filecase/plug/CaseEng.hlf +%%DATADIR%%/Plugins/filecase/plug/CaseEng.lng +%%DATADIR%%/Plugins/filecase/plug/CaseRus.hlf +%%DATADIR%%/Plugins/filecase/plug/CaseRus.lng +%%DATADIR%%/Plugins/incsrch/plug/incsrche.hlf +%%DATADIR%%/Plugins/incsrch/plug/incsrchr.hlf +%%DATADIR%%/Plugins/incsrch/plug/isrceng.lng +%%DATADIR%%/Plugins/incsrch/plug/isrcrus.lng +%%DATADIR%%/Plugins/inside/plug/config.ini +%%DATADIR%%/Plugins/inside/plug/eng.lng +%%DATADIR%%/Plugins/inside/plug/rus.kng +%%DATADIR%%/Plugins/multiarc/plug/arceng.hlf +%%DATADIR%%/Plugins/multiarc/plug/arceng.lng +%%DATADIR%%/Plugins/multiarc/plug/arcrus.hlf +%%DATADIR%%/Plugins/multiarc/plug/arcrus.lng +%%DATADIR%%/Plugins/tmppanel/plug/TmpEng.hlf +%%DATADIR%%/Plugins/tmppanel/plug/TmpEng.lng +%%DATADIR%%/Plugins/tmppanel/plug/TmpRus.hlf +%%DATADIR%%/Plugins/tmppanel/plug/TmpRus.lng +%%DATADIR%%/notify.sh +%%DATADIR%%/open.sh +%%DATADIR%%/roots.sh +%%DATADIR%%/trash.sh +share/icons/far2l.svg +share/icons/hicolor/1024x1024/apps/far2l.svg +share/icons/hicolor/128x128/apps/far2l.svg +share/icons/hicolor/16x16/apps/far2l.svg +share/icons/hicolor/192x192/apps/far2l.svg +share/icons/hicolor/24x24/apps/far2l.svg +share/icons/hicolor/256x256/apps/far2l.svg +share/icons/hicolor/32x32/apps/far2l.svg +share/icons/hicolor/48x48/apps/far2l.svg +share/icons/hicolor/512x512/apps/far2l.svg +share/icons/hicolor/64x64/apps/far2l.svg +share/icons/hicolor/72x72/apps/far2l.svg +share/icons/hicolor/96x96/apps/far2l.svg +@dir %%DATADIR%%/Plugins/SimpleIndent/plug
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007141311.06EDBcMU023323>