• linux下的不错的小软件:apvlv,zathura和vifm


    最近上网,偶遇几个不错的软件。包括apvlv,zathura和vifm。
    这三款小软件都是类vi软件,就是很多按键都是在模仿vi的方式。
    apvlv和zathura是两款linux下的pdf阅读器。由于也是刚刚接触这两个,所以我准备先用用apvlv,然后在试用zathrua。
    这儿介绍两款:两个Linux下的pdf阅读器http://ihacklog.com/software/cool_software_share/pdf-viewer-for-linuxer.html
    apvlv的使用介绍:http://naihe2010.freetzi.com/apvlv-intro.html
    根据apvlv的使用方式和自己的习惯,我写了自己的配置文件。这是我的配置文件(根据软件自带的apvlvrc.example进行改写的):
    View Code
    " some map
    " map I to zi, and O to zo
    "map I zi
    "map O zo
    "map the tab switch
    map w gT
    map e gt
    " map n to <C-f> to goto next page
    map n <C-f>
    map <Space> <C-f>
    " and p to prepage
    map p <C-b>
    map c j
    map v k

    "map <A-j> <C-w>j
    "map <A-k> <C-w>k
    "map <A-h> <C-w>h
    "map <A-l> <C-w>l

    " if start apvlv as fullscreen mode, default is no
    set fullscreen=no

    " zoom value, default is fitwidth
    " zoom has 4 styles
    " a float type number
    " fitwidth
    " fitheight
    " normal
    set zoom=fitwidth

    " set window size
    set width=800
    set height=600

    " set command timeout between two key press 
    set commandtimeout=2000

    " set default dir
    "set defaultdir=C:\

    " set if use content view
    set content=yes

    " set weather use continuous view 
    " make sure the autoscrollpage is set to "yes" if you want to set this to yes
    set continuous=yes

    " set a pad to continuous page
    set continuouspad=2

    " set if auto scroll page when at the end or begin of one pdf page
    set autoscrollpage=yes

    " set if auto scroll doc from 1st page when goto the last page
    set autoscrolldoc=yes

    " set if disable ~/.apvlvinfo, default is no
    set noinfo=no

    " set pdf object cache size
    set pdfcache = 4

    " set if use right and bottom scrollbar
    set scrollbar = no

    " set if use visual mode to select and copy text
    set visualmode = no

    " set if wrapscan text
     set wrapscan = yes

    " set double click action
    " option value is 'word', 'line' or 'page'
    set doubleclick = page

    " set GUI options
    " m means menu, T means toolbar
    "set guioptions =m 

    " set if use auto reload document
    " > 0 means auto reload after some seconds. = 0 means not auto reload
    " set autoreload = 3

    " set if reverted pdf page
    " set reverted = no

    我是在fedora14上直接使用yum install apvlv来进行安装的
    安装之后的版本是0.0.9.8版本。
    我在使用之后发现有如下问题:
    1. 快捷键t和T不能使用
    2. 示例配置文件中写着可以设置GUI,但是当我设置这个选项的时候软件就崩溃的。
    3. 现在我觉得很大的一个问题就是:无法重新返回书签。
       原pdf文档中有书签,然后刚打开的时候可以显示书签,但是在我选择了一个书签,可以进入对应内容,可以无法再返回书签。这样很不方便。

    对于vifm,这是一个可以在终端使用的文件管理器,也是使用vi中的按键方式。
    对于经常使用vi的人来说还是很容易上手的。
    对于vifm的介绍可以看这儿
    我是在fedora14中使用yum install vifm进行安装的。

    另外,还有一款非常好用的终端图片查看器feh。它使用起来非常的灵活,使用方式可以参见
    还有一款非常不错的邮件客户端mutt(这是中文版),我现在一直在使用的是thunderbird。而mutt是一个在命令行使用的软件,最近一直在学习vim,所以这个软件先放一放了,在这儿做个记录。以后有时间好好学学mutt的使用方法。

  • 相关阅读:
    Python reportlab table 设置cellstyle枚举,设置单元格padding
    代理工具 v2ra*的使用
    python 开发环境需要安装
    postgres 新增或者更新语句
    python psycopg2 查询结果返回字典类型
    postgres 多个字段匹配查询
    django 执行原生sql形参传递,字段参数传递
    亚马逊接口调用
    python x 开头的字符转码为中文
    postgres 定义变量
  • 原文地址:https://www.cnblogs.com/xkfz007/p/2359329.html
Copyright © 2020-2023  润新知