<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Sergio Agustin De Vita</title>
    <description>The latest articles on Forem by Sergio Agustin De Vita (@sergio_agustindevita_70).</description>
    <link>https://forem.com/sergio_agustindevita_70</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3797228%2Fe8345c2e-c329-4aa6-969c-5ef9f7e5fe6b.png</url>
      <title>Forem: Sergio Agustin De Vita</title>
      <link>https://forem.com/sergio_agustindevita_70</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/sergio_agustindevita_70"/>
    <language>en</language>
    <item>
      <title>I Built a Notepad++ Alternative for Mac — Here's What I Learned</title>
      <dc:creator>Sergio Agustin De Vita</dc:creator>
      <pubDate>Fri, 27 Feb 2026 23:10:07 +0000</pubDate>
      <link>https://forem.com/sergio_agustindevita_70/i-built-a-notepad-alternative-for-mac-heres-what-i-learned-248b</link>
      <guid>https://forem.com/sergio_agustindevita_70/i-built-a-notepad-alternative-for-mac-heres-what-i-learned-248b</guid>
      <description>&lt;p&gt;As a developer who spent years on Windows, switching to Mac meant leaving behind one tool I relied on daily: &lt;strong&gt;Notepad++&lt;/strong&gt;. Sure, there's VS Code, Sublime Text, and others — but none of them felt quite like Notepad++. So I built my own.&lt;/p&gt;

&lt;h2&gt;
  
  
  Meet Notemac++
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/sergioadevita/notemac-plus-plus" rel="noopener noreferrer"&gt;Notemac++&lt;/a&gt; is a free, open-source text and source code editor for macOS and the web, inspired by Notepad++. It runs as a native desktop app (via Tauri) and as a web app you can try right now in your browser.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Try it instantly:&lt;/strong&gt; &lt;a href="https://sergioadevita.github.io/notemac-plus-plus/app/" rel="noopener noreferrer"&gt;Launch the web app&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Another Editor?
&lt;/h2&gt;

&lt;p&gt;I didn't set out to compete with VS Code. I wanted something that felt like &lt;strong&gt;Notepad++ on Mac&lt;/strong&gt; — fast startup, lightweight, tabbed editing, and all those small features that make text editing pleasant: bookmarks, macro recording, column editing, line operations, encoding conversion.&lt;/p&gt;

&lt;p&gt;But since I was building from scratch, I also added things I wished Notepad++ had:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Built-in Git integration&lt;/strong&gt; — A full GUI for staging, committing, diffing, and managing branches. Not just a terminal shortcut.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI coding assistant&lt;/strong&gt; — Supports OpenAI, Anthropic, and Ollama (local models). Code completion, refactoring, and chat right in the editor.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Integrated terminal&lt;/strong&gt; — No need to switch windows.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;File comparison&lt;/strong&gt; — Side-by-side diff view.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web version&lt;/strong&gt; — The same editor runs in any browser, no installation required.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript + React&lt;/strong&gt; for the UI&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Monaco Editor&lt;/strong&gt; (the engine behind VS Code) for the editing experience&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tauri&lt;/strong&gt; for the native macOS app — resulting in a binary that's ~75% smaller than Electron&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vite&lt;/strong&gt; for the web build&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2,651+ passing tests&lt;/strong&gt; covering the codebase&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I chose Tauri over Electron because the difference in bundle size and memory usage is significant. The Tauri app feels snappy and native.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features at a Glance
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;Notemac++&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Syntax Languages&lt;/td&gt;
&lt;td&gt;70+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Git Integration&lt;/td&gt;
&lt;td&gt;Built-in GUI&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI Assistant&lt;/td&gt;
&lt;td&gt;Multi-provider&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Terminal&lt;/td&gt;
&lt;td&gt;Integrated&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Themes&lt;/td&gt;
&lt;td&gt;7 + custom&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Split View&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Macros&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bookmarks&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Find/Replace&lt;/td&gt;
&lt;td&gt;Regex, mark, bookmark&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;File Compare&lt;/td&gt;
&lt;td&gt;Side-by-side diff&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Platform&lt;/td&gt;
&lt;td&gt;macOS + Web&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;License&lt;/td&gt;
&lt;td&gt;MIT&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;The roadmap includes plugin system support, collaborative editing, git blame view, merge conflict resolution tools, and more. Check the &lt;a href="https://github.com/sergioadevita/notemac-plus-plus#planned-features" rel="noopener noreferrer"&gt;full roadmap on GitHub&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Web app (no install):&lt;/strong&gt; &lt;a href="https://sergioadevita.github.io/notemac-plus-plus/app/" rel="noopener noreferrer"&gt;https://sergioadevita.github.io/notemac-plus-plus/app/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/sergioadevita/notemac-plus-plus" rel="noopener noreferrer"&gt;https://github.com/sergioadevita/notemac-plus-plus&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Landing page:&lt;/strong&gt; &lt;a href="https://sergioadevita.github.io/notemac-plus-plus/" rel="noopener noreferrer"&gt;https://sergioadevita.github.io/notemac-plus-plus/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It's MIT licensed and contributions are welcome. If you've ever missed Notepad++ on Mac, give it a try and let me know what you think!&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>webdev</category>
      <category>typescript</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
