tabswidth is 4 not 6
This commit is contained in:
parent
4e0acfa99a
commit
a74ca1d1de
|
@ -436,4 +436,4 @@ main(int argc, char *argv[])
|
|||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
|
@ -28,4 +28,4 @@ int xerror(Display *, XErrorEvent *); /* awesome's X error handler */
|
|||
UICB_PROTO(uicb_quit);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
client.c
2
client.c
|
@ -808,4 +808,4 @@ uicb_killclient(awesome_config *awesomeconf,
|
|||
else
|
||||
XKillClient(awesomeconf->display, (*awesomeconf->client_sel)->win);
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
client.h
2
client.h
|
@ -50,4 +50,4 @@ UICB_PROTO(uicb_swapnext);
|
|||
UICB_PROTO(uicb_swapprev);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
common.h
2
common.h
|
@ -31,4 +31,4 @@
|
|||
#define LAYOUT_PROTO(name) void name(awesome_config *)
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
config.c
2
config.c
|
@ -429,4 +429,4 @@ initxcolor(Display *disp, int scr, const char *colstr)
|
|||
die("awesome: error, cannot allocate color '%s'\n", colstr);
|
||||
return color;
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
config.h
2
config.h
|
@ -203,4 +203,4 @@ struct awesome_config
|
|||
void parse_config(Display *, int, const char *, awesome_config *); /* parse configuration file */
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
draw.c
2
draw.c
|
@ -127,4 +127,4 @@ textwidth(Display *disp, XftFont *font, char *text, ssize_t len)
|
|||
return gi.width;
|
||||
}
|
||||
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
draw.h
2
draw.h
|
@ -29,4 +29,4 @@ void drawrectangle(Display *, int, int, int, int, int, Drawable, int, int, Bool,
|
|||
void drawcircle(Display *, int, int, int, int, Drawable, int, int, Bool, XColor);
|
||||
inline unsigned short textwidth(Display *, XftFont *, char *, ssize_t);
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
event.c
2
event.c
|
@ -538,4 +538,4 @@ grabkeys(Display *disp, int screen, awesome_config *awesomeconf)
|
|||
GrabModeAsync, GrabModeAsync);
|
||||
}
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
event.h
2
event.h
|
@ -42,4 +42,4 @@ void handle_event_shape(XEvent *, awesome_config *);
|
|||
void handle_event_randr_screen_change_notify(XEvent *, awesome_config *);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
layout.c
2
layout.c
|
@ -288,4 +288,4 @@ uicb_zoom(awesome_config *awesomeconf,
|
|||
arrange(awesomeconf->display, awesomeconf);
|
||||
}
|
||||
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
layout.h
2
layout.h
|
@ -43,4 +43,4 @@ UICB_PROTO(uicb_togglehorizontalmax);
|
|||
UICB_PROTO(uicb_zoom);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
|
@ -39,4 +39,4 @@ layout_floating(awesome_config *awesomeconf)
|
|||
resize(c, c->x, c->y, c->w, c->h, awesomeconf, True);
|
||||
}
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
|
@ -26,4 +26,4 @@
|
|||
LAYOUT_PROTO(layout_floating);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
|
@ -36,4 +36,4 @@ layout_max(awesome_config *awesomeconf)
|
|||
si[awesomeconf->screen].height - 2 * c->border, awesomeconf, awesomeconf->resize_hints);
|
||||
XFree(si);
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
|
@ -27,4 +27,4 @@
|
|||
LAYOUT_PROTO(layout_max);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
|
@ -178,4 +178,4 @@ layout_tileleft(awesome_config *awesomeconf)
|
|||
{
|
||||
_tile(awesomeconf, False);
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
|
@ -33,4 +33,4 @@ UICB_PROTO(uicb_setncol);
|
|||
UICB_PROTO(uicb_setmwfact);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
screen.c
2
screen.c
|
@ -249,4 +249,4 @@ uicb_movetoscreen(awesome_config * awesomeconf,
|
|||
arrange(awesomeconf->display, &awesomeconf[prev_screen - awesomeconf->screen]);
|
||||
arrange(awesomeconf->display, &awesomeconf[new_screen - awesomeconf->screen]);
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
screen.h
2
screen.h
|
@ -39,4 +39,4 @@ UICB_PROTO(uicb_focusprevscreen);
|
|||
UICB_PROTO(uicb_movetoscreen);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
|
@ -260,4 +260,4 @@ uicb_setstatustext(awesome_config *awesomeconf, const char *arg)
|
|||
|
||||
drawstatusbar(awesomeconf->display, awesomeconf);
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
|
@ -32,4 +32,4 @@ UICB_PROTO(uicb_togglebar);
|
|||
UICB_PROTO(uicb_setstatustext);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
tag.c
2
tag.c
|
@ -329,4 +329,4 @@ uicb_tag_viewprev(awesome_config *awesomeconf,
|
|||
saveawesomeprops(awesomeconf->display, awesomeconf);
|
||||
arrange(awesomeconf->display, awesomeconf);
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
tag.h
2
tag.h
|
@ -41,4 +41,4 @@ UICB_PROTO(uicb_tag_viewnext);
|
|||
UICB_PROTO(uicb_tag_viewprev);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
uicb.c
2
uicb.c
|
@ -84,4 +84,4 @@ run_uicb(char *cmd, awesome_config *awesomeconf)
|
|||
|
||||
return 0;
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
uicb.h
2
uicb.h
|
@ -28,4 +28,4 @@ int parse_control(char *, awesome_config *);
|
|||
int run_uicb(char *, awesome_config *);
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
util.c
2
util.c
|
@ -225,4 +225,4 @@ ssize_t a_strcpy(char *dst, ssize_t n, const char *src)
|
|||
|
||||
return len;
|
||||
}
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
2
util.h
2
util.h
|
@ -207,4 +207,4 @@ void *name_func_lookup(const char *, const NameFuncLink *);
|
|||
UICB_PROTO(uicb_spawn);
|
||||
UICB_PROTO(uicb_exec);
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=6:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||
|
|
Loading…
Reference in New Issue