From timothy.c.bates at gmail.com Wed Dec 17 10:06:23 2014 From: timothy.c.bates at gmail.com (Tim Bates) Date: Wed, 17 Dec 2014 10:06:23 +0000 Subject: [txmt-dev] permissions on "~/Library/Application Support/Avian/Bundles/" Message-ID: Hi, What should the permissions be on bundles and their items/folder? I moved to a new laptop, and now can?t save changes to bundle items generates the error dialog "Sorry, but something went wrong while trying to save your changes. More info may be available via the console.? there is no information in the console From mailinglist at textmate.org Sun Dec 28 11:30:43 2014 From: mailinglist at textmate.org (Allan Odgaard) Date: Sun, 28 Dec 2014 12:30:43 +0100 Subject: [txmt-dev] Re: permissions on "~/Library/Application Support/Avian/Bundles/" In-Reply-To: References: Message-ID: On 17 Dec 2014, at 11:06, Tim Bates wrote: > What should the permissions be on bundles and their items/folder? Writable by current user. > I moved to a new laptop, and now can?t save changes to bundle items > generates the error dialog Where are the bundle items you try to save located? I.e. are these default items or local/custom items? If you copied the Caches folder from your old machine then try delete ~/Library/Caches/com.macromates.TextMate/BundlesIndex.binary From saclukey at live.com Wed Dec 31 20:21:35 2014 From: saclukey at live.com (Steven Clukey) Date: Wed, 31 Dec 2014 15:21:35 -0500 Subject: [txmt-dev] Split Views Implementation Message-ID: I?ve created an implementation of split views in TextMate. It is basically complete, except for one issue that I haven?t been able to fix and I am asking for help on this. I am posting it here rather than creating a Pull Request for several reasons. First, the known issue can be pretty serious, though it is not common in normal use. Second, my commits generally need work (which I appreciate, btw) and given the number of commits this may take some time to be ready for master. Third, I don?t want the pull request to become like the GitHub issue for split views, so I thought it would be better to post it here to work on, then when ready for master I?ll submit a Pull Request that can be merged quickly. The usage is fairly simple, there are 4 new options in the View menu to control the splitting. The tab bar is global, it shows all the open document and the currently active document is highlighted. Selecting a new document in the tab bar will change the currently active split to show that document. Closing a document closes it from all of the splits that are showing it. The active document is changed by clicking inside a document (or menu options in Windows). Thats pretty much it. Now the issue: if there are many documents open and they are closed ?too fast" (holding CMD+W works) then the coherence of the documents is lost and the windows may end up in a state where closing ?Untitled? opens ?Untitled 2?, and closing ?Untitled 2? opens ?Untitled? and the window doesn?t close. Worse yet, the splits do not show a new document, they show documents that should have already been closed. I believe this is caused by the fact that `openAndSelectDocument` is somewhat asynchronous, and ?too fast? perhaps means that the documents are closed faster than the new documents are open. But, since I have not been able to fix this problem perhaps my assessment is wrong. The implementation is on my fork: https://github.com/sclukey/textmate/commits/split_views Thanks, Steven Clukey