summaryrefslogtreecommitdiff
path: root/src/process.c
Commit message (Expand)AuthorAgeFilesLines
* Fix variable typeAmadeusz Sławiński2019-12-281-2/+2
* Using 'https' instead of 'http'Alexander Naumov2019-11-091-1/+1
* Clean whole buffer if we don't want to parse itAmadeusz Sławiński2019-04-171-4/+4
* Fix extra characters when sending a command in one goNicolas Schodet2019-02-111-1/+2
* fix flow of 'at' commandAmadeusz Sławiński2019-01-261-6/+6
* in verbose command, we can ignore return value from ParseOnOffAmadeusz Sławiński2018-12-061-1/+1
* in log command toggle log only if we successfully parsed argumentAmadeusz Sławiński2018-12-061-2/+2
* in truecolor command trigger redraw only if passed correct argumentAmadeusz Sławiński2018-12-061-2/+2
* added function and key binding for traversing to parentEthan Warth2018-11-181-0/+24
* bugfix: crash on dinfo, "stack smashing detected"Jason Simpson2018-09-241-9/+14
* fix buffer sizeAmadeusz Sławiński2018-05-131-1/+1
* fix sort commandAmadeusz Sławiński2018-04-111-11/+12
* clean up after refactoringAmadeusz Sławiński2018-04-111-1/+0
* simplify collapse commandAmadeusz Sławiński2018-04-111-8/+3
* refactor AddWindows, so it doesn't use wtab & maxwinAmadeusz Sławiński2018-04-111-20/+22
* refactor NextWindow and PreviousWindow to return Window pointer instead of wi...Amadeusz Sławiński2018-04-111-36/+30
* refactor SwitchWindow to accept Window * as parameterAmadeusz Sławiński2018-04-111-15/+9
* use last_window->w_number where we need upper bound instead of maxwinAmadeusz Sławiński2018-04-111-8/+6
* use GetWindowByNumber(n) instead of wtab[n]Amadeusz Sławiński2018-04-111-10/+10
* refactor ShowWindowsX to use window list, now that we canAmadeusz Sławiński2018-04-111-6/+2
* create bidirectional list of windowsAmadeusz Sławiński2018-04-111-0/+14
* rename windows to mru_window and window->w_next to window->w_prev_mruAmadeusz Sławiński2018-04-111-14/+14
* get rid of unneeded variableAmadeusz Sławiński2018-04-111-3/+1
* always create C-a [0-9] shortcutsAmadeusz Sławiński2018-04-111-1/+1
* refactor RefreshXtermOSC()Amadeusz Sławiński2018-04-071-4/+2
* get rid of (sometype *)0 castsAmadeusz Sławiński2018-04-071-34/+34
* use NULL instead of 0 where applicableAmadeusz Sławiński2018-04-061-161/+161
* fix non-ANSI function declarationsAmadeusz Sławiński2018-04-061-12/+11
* remove now unused key parameter from DoActionAmadeusz Sławiński2018-04-061-6/+6
* remove key parameter from command handlersAmadeusz Sławiński2018-04-061-665/+350
* stop using key argument in pow_detach command handlerAmadeusz Sławiński2018-04-061-27/+19
* stop using key argument in quit command handlerAmadeusz Sławiński2018-04-061-5/+17
* stop using key argument in kill command handlerAmadeusz Sławiński2018-04-061-6/+18
* remove no longer used variables in DoActionAmadeusz Sławiński2018-04-061-9/+1
* refactor DoAction switch into calling functionsAmadeusz Sławiński2018-04-061-2519/+4245
* reduce bool b scopeAmadeusz Sławiński2018-04-061-213/+268
* reduce i scopeAmadeusz Sławiński2018-04-061-168/+191
* Window *p does not need whole function scopeAmadeusz Sławiński2018-04-061-2/+1
* use ARRAY_SIZE for SocketPath sizeAmadeusz Sławiński2018-04-061-1/+1
* make sure ParseSwitch operates on initialized valuesAmadeusz Sławiński2018-03-031-1/+3
* fix clang warningsAmadeusz Sławiński2018-03-031-2/+9
* adding NULL pointer checkAlexander Naumov2017-12-191-1/+1
* ansi: terminate xterm OSC response the same way as the requestLubomir Rintel2017-09-011-1/+1
* ansi: add support for xterm OSC 11Lubomir Rintel2017-09-011-1/+1
* reuse list code, to show licenseAmadeusz Sławiński2017-07-311-1/+1
* Add new color formatting codes. HTML style #ABC or #AABBCC. Starting characte...Richard Lavigne2017-07-311-55/+132
* check if display exists before dereferencing itAmadeusz Sławiński2017-07-241-1/+1
* fix segfault when querying info on nonUTF screenAmadeusz Sławiński2017-07-101-1/+1
* refactor use of sizeofAmadeusz Sławiński2017-07-091-37/+37
* dynamically allocate windowsAmadeusz Sławiński2017-07-091-33/+2