ソースを参照

Merge remote-tracking branch 'baskerville/reverse-marks'

master
Bert Münnich 11年前
コミット
091aacb462
5個のファイルの変更19行の追加1行の削除
  1. +3
    -1
      README.md
  2. +11
    -0
      commands.c
  3. +1
    -0
      commands.h
  4. +1
    -0
      config.def.h
  5. +3
    -0
      sxiv.1

+ 3
- 1
README.md ファイルの表示

@@ -74,11 +74,12 @@ of small previews is displayed, making it easy to choose an image to open.
-d Scale all images to 100%, but fit large images into window
-F Use size-hints to make the window fixed/floating
-f Start in fullscreen mode
-G GAMMA Set image gamma to GAMMA (-32..32)
-g GEOMETRY Set window position and size
(see section GEOMETRY SPECIFICATIONS of X(7))
-i Read file list from stdin
-n NUM Start at picture NUM
-N NAME Set X window resource name to NAME
-n NUM Start at picture NUM
-o Write list of marked files to stdout when quitting
-q Be quiet, disable warnings
-r Search given directories recursively for images
@@ -108,6 +109,7 @@ of small previews is displayed, making it easy to choose an image to open.
D Remove image from file list and go to next image

m Mark/unmark current image
M Reverse all image marks
N Go [count] marked images forward
P Go [count] marked images backward



+ 11
- 0
commands.c ファイルの表示

@@ -251,6 +251,17 @@ bool it_toggle_image_mark(arg_t a)
return true;
}

bool it_reverse_marks(arg_t a)
{
int i, cnt = mode == MODE_IMAGE ? filecnt : tns.cnt;

for (i = 0; i < cnt; i++)
files[i].marked = !files[i].marked;
if (mode == MODE_THUMB)
tns.dirty = true;
return true;
}

bool it_navigate_marked(arg_t a)
{
long n = (long) a;


+ 1
- 0
commands.h ファイルの表示

@@ -55,6 +55,7 @@ bool it_n_or_last(arg_t);
bool i_navigate_frame(arg_t);
bool i_toggle_animation(arg_t);
bool it_toggle_image_mark(arg_t);
bool it_reverse_marks(arg_t);
bool it_navigate_marked(arg_t);
bool it_scroll_move(arg_t);
bool it_scroll_screen(arg_t);


+ 1
- 0
config.def.h ファイルの表示

@@ -101,6 +101,7 @@ static const keymap_t keys[] = {
{ true, XK_space, i_toggle_animation, (arg_t) None },

{ false, XK_m, it_toggle_image_mark, (arg_t) None },
{ false, XK_M, it_reverse_marks, (arg_t) None },
{ false, XK_N, it_navigate_marked, (arg_t) +1 },
{ false, XK_P, it_navigate_marked, (arg_t) -1 },



+ 3
- 0
sxiv.1 ファイルの表示

@@ -135,6 +135,9 @@ Remove current image from file list and go to next image.
.B m
Mark/unmark the current image.
.TP
.B M
Reverse all image marks.
.TP
.B N
Go
.I count


読み込み中…
キャンセル
保存