summaryrefslogtreecommitdiffstats
path: root/Action.c
AgeCommit message (Collapse)Author
2020-09-03Axe automated header generation.Zev Weiss
Reasoning: - implementation was unsound -- broke down when I added a fairly basic macro definition expanding to a struct initializer in a *.c file. - made it way too easy (e.g. via otherwise totally innocuous git commands) to end up with timestamps such that it always ran MakeHeader.py but never used its output, leading to overbuild noise when running what should be a null 'make'. - but mostly: it's just an awkward way of dealing with C code.
2020-08-26fix width of `AffinitPanel`Bert Wesarg
The panel size of 15 includes the gap to the next panel, thus use 14 as the minimum size and let the caller of `AffinityPanel_new` handle the gap.
2020-08-26Merge branch 'ci-hwloc-job' of https://github.com/bertwesarg/htop into ↵Nathan Scott
bertwesarg-ci-hwloc-job
2020-08-25Avoid shadowing warningsChristian Göttsche
2020-08-21Remove trailing whitespacesChristian Göttsche
2020-08-20Merge branch 'hishamhm-pull-960'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-914'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-857'Nathan Scott
2019-10-31Clean up existing whitespaceDaniel Flanagan
2019-05-26CPU_KERNEL redefinedsenjan
2019-02-12Don't follow process when selecting non-process-specific optionswangqr
Disable the follow process logic in Action_pickFromVector(), when selecting sort order or user filter, since they don't apply on specific process. Fix #856
2018-11-03added MainPanel actions n and N for find next and find prev. closes #601syrrim
2018-06-13Fix virtualization color in help screenHisham Muhammad
Closes #785.
2018-04-05Collapse current subtree pressing BackspaceHisham Muhammad
2018-02-18Replace size_t with int/void* unionHisham Muhammad
I was occasionally passing negative values to size_t. Plus, this better reflects the intent of the variant argument. Reported by Coverity: https://scan8.coverity.com/reports.htm#v13253/p10402/fileInstanceId=22093891&defectInstanceId=7543346&mergedDefectId=174179&fileStart=251&fileEnd=500
2018-02-17call clear() function when SIGWINCH is received. (#660)guoci
2017-09-14Make 'c' key work with threads as well.Hisham Muhammad
2017-07-22Mark some things as constRichard
Several string pointer arrays pointed to const strings but were not const themselves. A few various structures and arrays were also marked const.
2017-04-24F6 is actually used for both actions, depending on context.Hisham
2017-04-19update keymap in helpryenus
2016-05-05Auto-follow process after a search.Hisham
See #237.
2016-03-01Add "p" to HelpMarco Hinz
2016-02-17Typo in the word "priority"Vasyl Boroviak
2016-02-14Portable affinity using hwlocHisham
2016-02-02Try to make threads less confusing.Hisham
2016-01-12refactor *Screen classes, add InfoScreen superclassHisham Muhammad
2016-01-12Merge branch 'envscreen' of https://github.com/mklein-de/htop into ↵Hisham Muhammad
mklein-de-envscreen
2016-01-11Merge branch 'master' of https://github.com/hishamhm/htopHisham Muhammad
2016-01-11Present IO-Wait as a dot in monochrome. Fixes #345.Hisham Muhammad
Thank you @Explorer09 for the report!
2016-01-06Fix typo: prority => priorityBenjamin Porter
2015-12-02'e' displays environment of current processMichael Klein
- uses sysctl(KERN_PROCARGS2) on *BSD - doesn't work on Linux yet
2015-08-19Add expand/collapse on additional clicks!Hisham Muhammad
2015-08-19Rename String to StringUtils.David Hunt
Fixes building on case-insensitive filesystems where String.h gets confused with <string.h>. From d734dacea0a10d0465dad4e95b3421511e7da112 Mon Sep 17 00:00:00 2001 From: David Hunt <dhunt@iolanthe.attlocal.net> Date: Sat, 11 Jul 2015 20:56:31 -0500 Subject: [PATCH 1/8] Rename String to StringUtils
2015-08-07Add shortcut key 'p' to toggle full program paths.Tobias Geerinckx-Rice
2015-04-09Visual tweaks: change color when following, add Broken Gray theme.Hisham Muhammad
2015-03-24handle clicks on panel header lineHisham Muhammad
2015-03-23Simplify constructors.Hisham Muhammad
2015-03-23Tempus fugit.Hisham Muhammad
Conflicts: htop.c htop.h
2015-03-23incremental search and filter reintegrated!Hisham Muhammad
2015-03-23Move FunctionBar inside PanelHisham Muhammad
2015-03-22Working on integration of IncSet in new branch.Hisham Muhammad
2015-03-16Fix saving of header states, motion in Setup screen.Hisham Muhammad
2015-03-16Rename Setup_run to Action_runSetup.Hisham Muhammad
2015-03-15Move more Linux-specific code into Linux subdir.Hisham Muhammad
2015-01-23Another mega-patch for the refactoring process.Hisham Muhammad
Kinda runs, but functionality from the original main loop is still missing. Patience.
2015-01-21Sorry about the mega-patch.Hisham Muhammad
This is a work-in-progress, code is currently broken. (Some actions, and notably, the header, are missing.)
2014-11-24Builds on Linux again!Hisham Muhammad
2014-11-24Changes for supporting separate platform subdirectories.Hisham Muhammad