{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":1625684,"defaultBranch":"master","name":"emacs-bash-completion","ownerLogin":"szermatt","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2011-04-17T08:08:27.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/734476?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1674764093.565701","currentOid":""},"activityList":{"items":[{"before":"53d503a1199188e4a190a669d00b7b693a6afb3e","after":"0f4f7ab45648d5fed0f8a67526c1a6902754f84c","ref":"refs/heads/master","pushedAt":"2024-09-14T17:48:17.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"szermatt","name":"Stephane Zermatten","path":"/szermatt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/734476?s=80&v=4"},"commit":{"message":"Merge pull request #73 from tarsiiformes/cosmetics\n\nMinor whitespace and link cosmetics","shortMessageHtmlLink":"Merge pull request #73 from tarsiiformes/cosmetics"}},{"before":"f1daac0386c24cbe8a244a62c7588cc6847b07ae","after":"53d503a1199188e4a190a669d00b7b693a6afb3e","ref":"refs/heads/master","pushedAt":"2024-09-13T15:36:07.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"szermatt","name":"Stephane Zermatten","path":"/szermatt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/734476?s=80&v=4"},"commit":{"message":"Mention mistty in README.md\n\nWith this change, mistty is listed as an alternative to bash completion that works with other shells.","shortMessageHtmlLink":"Mention mistty in README.md"}},{"before":"6fca128da5e53d9d953052a6775525daa325367d","after":"f1daac0386c24cbe8a244a62c7588cc6847b07ae","ref":"refs/heads/master","pushedAt":"2023-06-12T11:03:20.438Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"szermatt","name":"Stephane Zermatten","path":"/szermatt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/734476?s=80&v=4"},"commit":{"message":"Merge pull request #68 from xiaoyuechen/master\n\nAdd eshell setup","shortMessageHtmlLink":"Merge pull request #68 from xiaoyuechen/master"}},{"before":"ae6560fe897ab6fcc0b1c4aac1ac084be5bc632e","after":"6fca128da5e53d9d953052a6775525daa325367d","ref":"refs/heads/master","pushedAt":"2023-06-07T09:32:54.092Z","pushType":"push","commitsCount":1,"pusher":{"login":"szermatt","name":"Stephane Zermatten","path":"/szermatt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/734476?s=80&v=4"},"commit":{"message":"Force deletion of fifo file made for bash 4.2.\n\nBefore this change, it was possible for rm to be configured to require\nconfirmation when deleting the temporary fifo file. Switching to 'rm -f'\nshould avoid this.\n\nfixes #67","shortMessageHtmlLink":"Force deletion of fifo file made for bash 4.2."}},{"before":"1826ecf46e52f6c0cf21839c3af796a5cb858779","after":"ae6560fe897ab6fcc0b1c4aac1ac084be5bc632e","ref":"refs/heads/master","pushedAt":"2023-03-15T19:59:11.445Z","pushType":"push","commitsCount":1,"pusher":{"login":"szermatt","name":"Stephane Zermatten","path":"/szermatt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/734476?s=80&v=4"},"commit":{"message":"Append / to directories under Bash 4.2 and 4.3.\n\nBefore this change, appending / to directories was turned off under\nBash4.2 and Bash4.3, because post-filtering of results is implemented\nusing a feature introduced in Bash4.4.\n\nThis change introduces backward-compatibility logic to support\npost-filtering of results under Bash4.2 and Bash4.3 which requires\nmkfifo.\n\nfixes issue #66","shortMessageHtmlLink":"Append / to directories under Bash 4.2 and 4.3."}},{"before":"b38f9bca0c194ee3a79c19a14db3b38d1262ca8c","after":"1826ecf46e52f6c0cf21839c3af796a5cb858779","ref":"refs/heads/master","pushedAt":"2023-03-09T15:59:22.284Z","pushType":"push","commitsCount":1,"pusher":{"login":"szermatt","name":"Stephane Zermatten","path":"/szermatt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/734476?s=80&v=4"},"commit":{"message":"Avoid executing PROMPT_COMMAND when doing completion.\n\nBefore this change, PROMPT_COMMAND was sometimes allowed to execute\nduring the first completion in a Bash process. This caused confusion in\nthe case where PROMPT_COMMAND does more than just printing data.\n\nWith this change, PROMPT_COMMAND is guaranteed to be stored and then\ncleared in the very first command set to a Bash process, together with\nPS1.\n\nNote that this lengthens the commands sent to Bash, to the point where\nthey were getting too long when defining functions, so initial function\ndefinition has been split into two Bash commands instead of one.\n\nFor background, see discussion on issue #63","shortMessageHtmlLink":"Avoid executing PROMPT_COMMAND when doing completion."}},{"before":"91d51ede0d9424766a0c174890a331385390f7fa","after":"b38f9bca0c194ee3a79c19a14db3b38d1262ca8c","ref":"refs/heads/master","pushedAt":"2023-03-08T14:12:22.390Z","pushType":"push","commitsCount":1,"pusher":{"login":"szermatt","name":"Stephane Zermatten","path":"/szermatt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/734476?s=80&v=4"},"commit":{"message":"Avoid executing anything in case __ebcpre is not defined.\n\nIn single-process mode, to detect communication with an un-configured\nBash process, bash-completion.el always starts with a check for its\ninternal function __ebcpre (type __ebcpre) and configures the Bash\nprocess if that doesn't succeed.\n\nBefore this change, the case where type __ebcpre failed was correctly\ndetected and reported by Bash but the command was executed anyways - and\nthe result usually thrown away.\n\nThis was wasteful, but should have been harmless. However, in some\ncases, at least when expanding a command name first thing in a buffer,\nthat command happened to cause Bash to exit or crash.\n\nWith this change, the intended command isn't executed anymore when type\n__ebcpre fails, which avoids crashing Bash.\n\nfixes #63","shortMessageHtmlLink":"Avoid executing anything in case __ebcpre is not defined."}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xNFQxNzo0ODoxNy4wMDAwMDBazwAAAAS2Vh0J","endCursor":"Y3Vyc29yOnYyOpK7MjAyMy0wMy0wOFQxNDoxMjoyMi4zOTA5NTNazwAAAAL_EWJs"}},"title":"Activity ยท szermatt/emacs-bash-completion"}