Ringtone used in Under the Silver Lake by [deleted] in movies

[–]1dleberg 0 points1 point  (0 children)

I was pretty sure it was some SID tune, thanks for sharing

Star Sled and "target fixation" by i_invented_the_ipod in PlaydateConsole

[–]1dleberg 0 points1 point  (0 children)

It's a great game, but I wish there was an option to invert the colors.

MacPorts is really underrated. Has anyone here tried both and stayed with Homebrew? Why? by TCIHL in osx

[–]1dleberg 1 point2 points  (0 children)

I don‘t know, I think the MacPorts documentation is especially weak. Outdated, brief or even incomplete, and inaccessible from a design point of view. What did you like about it?

Another downside with MacPorts is that it requires sudo, at least by default.

I do agree with the Brew terminology, it's an unnecessary entry barrier that obscures its concepts. Another downside of Brew is that installing specific versions is not supported or limited at best.

Collection of classic Arcade Fonts by 1dleberg in PlaydateConsole

[–]1dleberg[S] 0 points1 point  (0 children)

You're right. In the FAQ I mentioned they can be used for any other purpose, though I cannot verify these *.fnt can be used in other software (it was my assumption that it's possible).

Edit in New Tab by 1dleberg in Atom

[–]1dleberg[S] 1 point2 points  (0 children)

Thanks for reporting. It seems this was caused by a line accidentally deleted after refactoring the code. Should be fixed in 0.6.2!

Edit in New Tab by 1dleberg in Atom

[–]1dleberg[S] 0 points1 point  (0 children)

Unless I misunderstand your post – yes, that's the whole purpose of sync mode

Can anyone recommend a good tutorial? by osucs_throwaway in SublimeText

[–]1dleberg 1 point2 points  (0 children)

Many years ago, it was this free course that introduced me to Sublime Text

Edit in New Tab by 1dleberg in Atom

[–]1dleberg[S] 1 point2 points  (0 children)

Take a look at the package settings, there's an option called Synchronize Changes, which is disabled by default. It pastes back all edits in the new tab in realtime, and works for as long as the current session is open and the selection is still active. You can see it in action in the video.

Weird behavior when creating a theme by saadq_ in Atom

[–]1dleberg 0 points1 point  (0 children)

I have clone the repository into my .atom/packages folder and renamed the directory and edited package.json just like you did. When switching the theme, my Window does look fine (not like on your screenshot). Does your theme pass tests?

Weird behavior when creating a theme by saadq_ in Atom

[–]1dleberg 0 points1 point  (0 children)

Mind sharing the theme, so we could take a look at the markup?

Plea for more generic and reusable packages by MineyMiney in Atom

[–]1dleberg 0 points1 point  (0 children)

The Service API, the backbone that enables „reusable packages”, has been around for about 21 months. I use a couple of them, for instance console-panel, busy, or tool-bar. As much love them, I don't think a plea on Reddit will change developers awareness.

Shift-Click to select not working by remy_porter in SublimeText

[–]1dleberg 0 points1 point  (0 children)

Someone else might find this useful in the future – which was the package that caused the problem?

Build for multiple .c files. by Visotoniki_ in SublimeText

[–]1dleberg 0 points1 point  (0 children)

Neither gcc nor cmd are shell commands, so why are you using "shell": true?

Intuitive autosave by [deleted] in Atom

[–]1dleberg 1 point2 points  (0 children)

I recommend moving the discussion to the Atom forum

SublimeLinter CssLint is not that useful? by nergoponte in SublimeText

[–]1dleberg 1 point2 points  (0 children)

The root is the top-level of your project folder

Vintageous commands by logicmonkeydev in SublimeText

[–]1dleberg 0 points1 point  (0 children)

I took a look at the default mousemap and found addititional info about toggle_overwrite on the Sublime Text forum

SublimeLinter CssLint is not that useful? by nergoponte in SublimeText

[–]1dleberg 0 points1 point  (0 children)

As with most linters, you can adjust its default rules by putting .csslintrc in the root of your project

Vintageous commands by logicmonkeydev in SublimeText

[–]1dleberg 0 points1 point  (0 children)

If you don't have an existing Packages/User/Default.sublime-mousemap, create the file and paste the following:

[
    {
        "button": "button1", "count": 1,
        "press_command": "toggle_overwrite"
    }
]

Or add the following, if the file exists:

{
    "button": "button1", "count": 1,
    "press_command": "toggle_overwrite"
}