about summary refs log blame commit diff stats
path: root/.tmux.conf
blob: 2b675e2d77ed171fa4beca73294b8b401641f1ff (plain) (tree)
1
2
3
4
5
6
7
8






                                         
                                                


                          

















                                                                              
 
 
























                                                                                                         
unbind C-b
set -g prefix C-a
bind-key C-a last-window
bind-key a send-prefix

set-window-option -g automatic-rename off
set-option -g allow-rename off
set-option -g default-terminal "screen-256color"

set -g bell-action current

bind-key . source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"

bind-key -n M-h select-pane -L
bind-key -n M-j select-pane -D
bind-key -n M-k select-pane -U
bind-key -n M-l select-pane -R

# Fine adjustment (1 or 2 cursor cells per bump)
bind -n S-Left resize-pane -L 2
bind -n S-Right resize-pane -R 2
bind -n S-Down resize-pane -D 1
bind -n S-Up resize-pane -U 1

# Coarse adjustment (5 or 10 cursor cells per bump)
bind -n C-Left resize-pane -L 10
bind -n C-Right resize-pane -R 10
bind -n C-Down resize-pane -D 5
bind -n C-Up resize-pane -U 5


set -g status-bg black
set -g status-fg white

setw -g window-status-current-fg cyan
setw -g window-status-current-format "#[fg=red,bold][#[fg=default]#F#I:#W#F#[fg=red,bold]]#[default]"
setw -g window-status-format "#[fg=green]{#[default]#F#I:#W#F#[fg=green]}#[default]"

set -g status-left-length 17

set -g status-interval 1
#set -g status-left "#[fg=green](#[bold]#S#[nobold])#[fg=green,nobold]@#[bold]#H#[default]"

## for sif
#set -g status-left "#[fg=green](#[bold]#S#[nobold])#[fg=green,nobold]@#[fg=magenta]#H#[default]"
#set -g status-right "#[fg=blue,bold]%a%d/%m#[fg=yellow]%H:%M:%S"

## for tyr
#set -g status-left "#[fg=green](#[bold]#S#[nobold])#[fg=green,nobold]@#[fg=cyan]#H#[default]"
#set -g status-right "#[fg=blue,bold]%a%d/%m#[fg=yellow]%H:%M:%S"

## for basil
#set -g status-left "#[fg=green](#[bold]#S#[nobold])#[fg=green,nobold]@#[fg=yellow]#H#[default]"
set -g status-left "#[fg=yellow]#H#[default]"
set -g status-right "#[fg=magenta,bold]#(/home/djm/bin/showmail.sh)#[fg=blue]%a%d/%m#[fg=yellow]%H:%M:%S"
span class='oid'>3a403046 ^
eb5b04df ^
527e739a ^
545a23e9 ^
527e739a ^
eb5b04df ^
3a403046 ^
f5338158 ^
527e739a ^
eb5b04df ^

3a403046 ^
eb5b04df ^
527e739a ^
545a23e9 ^

527e739a ^
eb5b04df ^
3a403046 ^
6bad38c2 ^
527e739a ^
eb5b04df ^

3a403046 ^
eb5b04df ^
527e739a ^
545a23e9 ^

527e739a ^

eb5b04df ^
3a403046 ^
6bad38c2 ^
527e739a ^
eb5b04df ^

3a403046 ^
4be250ae ^
527e739a ^
545a23e9 ^

527e739a ^
4be250ae ^
3a403046 ^
4be250ae ^
527e739a ^
4be250ae ^

3a403046 ^
4be250ae ^
527e739a ^
545a23e9 ^

527e739a ^
4be250ae ^
3a403046 ^
4be250ae ^
527e739a ^
4be250ae ^

3a403046 ^
4be250ae ^
527e739a ^
545a23e9 ^

527e739a ^
4be250ae ^




3a403046 ^
4be250ae ^
527e739a ^
4be250ae ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
                 




                   

                    
                               
 
                              
 

                                         

 
                                     
 


                                         

 
                                    
 


                                         

 
                                                
 

                                               
 
                        
 
                           

 
                                       
 
                                         
                                  
                                                    
 
                                         
 
                           

 
                                                     
 
                                         

                                  
                                                    
 
                                         
 
                           

 
                                                      
 
                                         

                                  

                                                       
 
                                         
 
                           

 
                                   
 
                                         

                                  
                                               
 
                                                
 
                           

 
                                        
 
                                         

                                  
                                               
 
                                                
 
                           

 
                                       
 
                                         

                                  
                                               




                                           
                                      
 
                           
 
#include <glib.h>
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>

#include "contact.h"
#include "tools/autocomplete.h"

void clear_empty(void **state)
{
    Autocomplete ac = autocomplete_new();
    autocomplete_clear(ac);
}

void reset_after_create(void **state)
{
    Autocomplete ac = autocomplete_new();
    autocomplete_reset(ac);
    autocomplete_clear(ac);
}

void find_after_create(void **state)
{
    Autocomplete ac = autocomplete_new();
    autocomplete_complete(ac, "hello");
    autocomplete_clear(ac);
}

void get_after_create_returns_null(void **state)
{
    Autocomplete ac = autocomplete_new();
    GSList *result = autocomplete_get_list(ac);

    assert_null(result);

    autocomplete_clear(ac);
}

void add_one_and_complete(void **state)
{
    Autocomplete ac = autocomplete_new();
    autocomplete_add(ac, "Hello");
    char *result = autocomplete_complete(ac, "Hel");

    assert_string_equal("Hello", result);

    autocomplete_clear(ac);
}

void add_two_and_complete_returns_first(void **state)
{
    Autocomplete ac = autocomplete_new();
    autocomplete_add(ac, "Hello");
    autocomplete_add(ac, "Help");
    char *result = autocomplete_complete(ac, "Hel");

    assert_string_equal("Hello", result);

    autocomplete_clear(ac);
}

void add_two_and_complete_returns_second(void **state)
{
    Autocomplete ac = autocomplete_new();
    autocomplete_add(ac, "Hello");
    autocomplete_add(ac, "Help");
    char *result1 = autocomplete_complete(ac, "Hel");
    char *result2 = autocomplete_complete(ac, result1);

    assert_string_equal("Help", result2);

    autocomplete_clear(ac);
}

void add_two_adds_two(void **state)
{
    Autocomplete ac = autocomplete_new();
    autocomplete_add(ac, "Hello");
    autocomplete_add(ac, "Help");
    GSList *result = autocomplete_get_list(ac);

    assert_int_equal(2, g_slist_length(result));

    autocomplete_clear(ac);
}

void add_two_same_adds_one(void **state)
{
    Autocomplete ac = autocomplete_new();
    autocomplete_add(ac, "Hello");
    autocomplete_add(ac, "Hello");
    GSList *result = autocomplete_get_list(ac);

    assert_int_equal(1, g_slist_length(result));

    autocomplete_clear(ac);
}

void add_two_same_updates(void **state)
{
    Autocomplete ac = autocomplete_new();
    autocomplete_add(ac, "Hello");
    autocomplete_add(ac, "Hello");
    GSList *result = autocomplete_get_list(ac);

    GSList *first = g_slist_nth(result, 0);

    char *str = first->data;

    assert_string_equal("Hello", str);

    autocomplete_clear(ac);
}